Pardon me if I am missing some information or something obvious.  This is my first post.

Has anyone been able to successfully run iMIP on calendarserver 2.4.dfsg-7 on ubuntu 12.04?  I have been playing around for hours with various configurations without success.  I have followed the instructions provided here.  I have a created a separate IMAP account on the mail server and this mail server is on the same host as the calendarserver.

I have set my caldavd.plist as follows:

      <!-- iMIP protocol options -->
      <key>iMIP</key>
      <dict>
        <key>Enabled</key>
        <false/>
        <key>MailGatewayServer</key>
        <string>localhost</string>
        <key>MailGatewayPort</key>
        <integer>62310</integer>
        <key>Username</key>
        <string>calendar</string>
        <key>Password</key>
        <string>mycalendaruserpassword</string>
        <key>Sending</key>
        <dict>
          <key>Server</key>
          <string>mymailserver.fqdn</string>
          <key>Port</key>
          <integer>587</integer>
          <key>UseSSL</key>
          <true/>
          <key>Username</key>
          <string>calendar</string>
          <key>Password</key>
          <string>mySMTPuserpassword</string>
          <key>Address</key>
          <string>calendar@mydomain.fqdn</string> <!-- Address email will be sent from -->
        </dict>
        <key>Receiving</key>
        <dict>
          <key>Server</key>
          <string>mymailserver.fqdn</string>
          <key>Port</key>
          <integer>143</integer>
          <key>Type</key>
          <string>imap</string> <!-- Either "pop" or "imap" -->
          <key>UseSSL</key>
          <true/>
          <key>Username</key>
          <string>calendar</string>
          <key>Password</key>
          <string>myIMAPuserpassword</string>
          <key>PollingSeconds</key>
          <integer>30</integer>
        </dict>
        <key>AddressPatterns</key>
        <array>
          <string>mailto:.*</string>
        </array>
      </dict>

The error logs in debug mode indicate nothing as does the mail.log.

  # grep imip /var/log/caldavd/error.log
  #


The only messages I see are:

2014-03-18 04:56:26+0100 [-] [caldav-8443]  [PooledMemCacheProtocol,client] [twistedcaldav.scheduling.scheduler#error] Unknown calendar user address: mailto:myemail@mydomain.fqdn
2014-03-18 04:56:26+0100 [-] [caldav-8443]  [PooledMemCacheProtocol,client] [twistedcaldav.scheduling.scheduler#info] METHOD: REQUEST, Component: VEVENT
2014-03-18 04:56:26+0100 [-] [caldav-8443]  [PooledMemCacheProtocol,client] [twistedcaldav.scheduling.scheduler.ScheduleResponseQueue#error] Error during PUT for mailto:myemail@mydomain.fqdn: None


I was expecting some twistedcaldav.scheduling.imip messages in the log to indicate that the service/gateway had been enabled.

If anyone has a working configuration, would you mind sharing your configuration?