sogo/SoObjects/Mailer
Wolfgang Sourdeau a3dd5bc0ca Monotone-Parent: d73281348e68338299c1595a484a8a1033de3cd1
Monotone-Revision: 736e8f74ef949a89cef749c9c8e331ea534cdcd8

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2006-07-28T22:43:28
Monotone-Branch: ca.inverse.sogo
2006-07-28 22:43:28 +00:00
..
ChangeLog.upstream - renamed old and obsolete ChangeLogs to Changelog.upstream; 2006-07-04 20:13:47 +00:00
GNUmakefile see ChangeLog 2006-06-15 19:34:10 +00:00
GNUmakefile.preamble see ChangeLog 2006-06-15 19:34:10 +00:00
Product.m see ChangeLog 2006-06-15 19:34:10 +00:00
README see ChangeLog 2006-06-15 19:34:10 +00:00
SOGoCalendarMailBodyPart.m see ChangeLog 2006-06-15 19:34:10 +00:00
SOGoDraftObject.h see ChangeLog 2006-06-15 19:34:10 +00:00
SOGoDraftObject.m see ChangeLog 2006-06-15 19:34:10 +00:00
SOGoDraftsFolder.h see ChangeLog 2006-06-15 19:34:10 +00:00
SOGoDraftsFolder.m see ChangeLog 2006-06-15 19:34:10 +00:00
SOGoImageMailBodyPart.m see ChangeLog 2006-06-15 19:34:10 +00:00
SOGoMailAccount.h see ChangeLog 2006-06-15 19:34:10 +00:00
SOGoMailAccount.m see ChangeLog 2006-06-15 19:34:10 +00:00
SOGoMailAccounts.h see ChangeLog 2006-06-15 19:34:10 +00:00
SOGoMailAccounts.m see ChangeLog 2006-06-15 19:34:10 +00:00
SOGoMailBaseObject.h see ChangeLog 2006-06-15 19:34:10 +00:00
SOGoMailBaseObject.m see ChangeLog 2006-06-15 19:34:10 +00:00
SOGoMailBodyPart.h see ChangeLog 2006-06-15 19:34:10 +00:00
SOGoMailBodyPart.m see ChangeLog 2006-06-15 19:34:10 +00:00
SOGoMailFolder.h see ChangeLog 2006-06-15 19:34:10 +00:00
SOGoMailFolder.m Monotone-Parent: 3f62f5802ffb2cb6b250f3c26f2ab31cbbf51ba8 2006-07-12 22:03:05 +00:00
SOGoMailFolderDataSource.h see ChangeLog 2006-06-15 19:34:10 +00:00
SOGoMailFolderDataSource.m see ChangeLog 2006-06-15 19:34:10 +00:00
SOGoMailIdentity.h see ChangeLog 2006-06-15 19:34:10 +00:00
SOGoMailIdentity.m see ChangeLog 2006-06-15 19:34:10 +00:00
SOGoMailManager.h see ChangeLog 2006-06-15 19:34:10 +00:00
SOGoMailManager.m see ChangeLog 2006-06-15 19:34:10 +00:00
SOGoMailObject.h see ChangeLog 2006-06-15 19:34:10 +00:00
SOGoMailObject.m see ChangeLog 2006-06-15 19:34:10 +00:00
SOGoMessageMailBodyPart.m see ChangeLog 2006-06-15 19:34:10 +00:00
SOGoSharedInboxFolder.h see ChangeLog 2006-06-15 19:34:10 +00:00
SOGoSharedInboxFolder.m see ChangeLog 2006-06-15 19:34:10 +00:00
SOGoSharedMailAccount.h see ChangeLog 2006-06-15 19:34:10 +00:00
SOGoSharedMailAccount.m see ChangeLog 2006-06-15 19:34:10 +00:00
SOGoTrashFolder.h see ChangeLog 2006-06-15 19:34:10 +00:00
SOGoTrashFolder.m see ChangeLog 2006-06-15 19:34:10 +00:00
SOGoUser+Mail.h see ChangeLog 2006-06-15 19:34:10 +00:00
SOGoUser+Mail.m Monotone-Parent: d73281348e68338299c1595a484a8a1033de3cd1 2006-07-28 22:43:28 +00:00
SOGoVCardMailBodyPart.m see ChangeLog 2006-06-15 19:34:10 +00:00
Version see ChangeLog 2006-06-15 19:34:10 +00:00
common.h see ChangeLog 2006-06-15 19:34:10 +00:00
product.plist see ChangeLog 2006-06-15 19:34:10 +00:00

README

# README for Mailer SoObjects

Class Overview
==============

SOGoMailManager
- backend class connecting to NGImap4, will probably move to SOGoLogic

Class Hierarchy
===============

[NSObject]
  SOGoMailerProduct
  <SOGoObject>
    SOGoMailAccounts
    SOGoMailBaseObject
      SOGoDraftObject
      SOGoDraftsFolder
      SOGoMailAccount
        SOGoSharedMailAccount
      SOGoMailBodyPart
        SOGoImageMailBodyPart
        SOGoMessageMailBodyPart
      SOGoMailFolder
        SOGoSharedInboxFolder
      SOGoMailObject
  [EODataSource]
    SOGoMailFolderDataSource

Defaults
========

SOGoEnableIMAP4Debug       YES|NO - enable/disable debugging in SOGoMailManager
SOGoDisableIMAP4Pooling    YES|NO - disable IMAP4 connection pooling
SOGoMailSpoolPath	   path   - FS path where mail drafts are stored
SOGoNoDraftDeleteAfterSend YES|NO - makes the draft's -delete method a NOOP

SOGoSpecialFoldersInRoot   YES|NO - do special folders live under INBOX?
  - corresponds to the Cyrus setting: "altnamespace: yes"
SOGoEnableSieveFolder      YES|NO - should the Sieve folder be visible?

SOGoSharedFolderName       IMAP4-Name
  - corresponds to the Cyrus setting: sharedprefix
SOGoOtherUsersFolderName   IMAP4-Name
  - corresponds to the Cyrus setting: userprefix

SOGoInternetMailSuffix     String-Pattern
  - suffix to add to mails sent via Internet
  - eg: -SOGoInternetMailSuffix \
        '"*** This email was composed using SOGo on the public Internet ***"'
    you can access request values inside the pattern, eg:
         "$headers.host$"

SOGoDoNotFetchMailHeader   YES|NO - whether or not to fetch the mail header
  - the mail header is ~4KB to fetch, a slowdown of ~13ms on the dev system
  - the header gives much more information about the mail
    - eg: spam status
  - parsing the mail header takes time

SOGoMailDisableETag        YES|NO - whether or not to check/deliver an etag