├── .gitignore ├── .gitmodules ├── README.md ├── common ├── Login.nib │ ├── classes.nib │ ├── info.nib │ └── keyedobjects.nib ├── ZKLoginController.h ├── ZKLoginController.m ├── credential.h ├── credential.m ├── minus-8.png └── plus-8.png ├── maildrop ├── AppDelegate.h ├── AppDelegate.m ├── AsItem.h ├── AsItem.m ├── Attachment.h ├── Attachment.m ├── ButtonBarController.h ├── ButtonBarController.m ├── Constants.h ├── Constants.m ├── CreateActivityController.h ├── CreateActivityController.m ├── Credits.html ├── Email.h ├── Email.m ├── English.lproj │ ├── InfoPlist.strings │ ├── Localizable.strings │ ├── MainMenu.nib │ │ ├── designable.nib │ │ └── keyedobjects.nib │ └── help.tmproj ├── Info.plist ├── LionInfoWindowController.h ├── LionInfoWindowController.m ├── LoginController.h ├── LoginController.m ├── NSData-Base64Extensions.h ├── NSData-Base64Extensions.m ├── SObjectPermsWrapper.h ├── SObjectPermsWrapper.m ├── Sparkle.framework │ ├── Headers │ ├── Resources │ ├── Sparkle │ └── Versions │ │ ├── A │ │ ├── Headers │ │ │ ├── NSApplication+AppCopies.h │ │ │ ├── NSFileManager+Authentication.h │ │ │ ├── NSFileManager+Verification.h │ │ │ ├── NSString+extras.h │ │ │ ├── RSS.h │ │ │ ├── SUAppcast.h │ │ │ ├── SUAppcastItem.h │ │ │ ├── SUAutomaticUpdateAlert.h │ │ │ ├── SUConstants.h │ │ │ ├── SUStatusChecker.h │ │ │ ├── SUStatusController.h │ │ │ ├── SUUnarchiver.h │ │ │ ├── SUUpdateAlert.h │ │ │ ├── SUUpdater.h │ │ │ ├── SUUtilities.h │ │ │ └── Sparkle.h │ │ ├── Resources │ │ │ ├── Info.plist │ │ │ ├── SUStatus.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── keyedobjects.nib │ │ │ └── en.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── keyedobjects.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── keyedobjects.nib │ │ │ │ └── Sparkle.strings │ │ └── Sparkle │ │ └── Current ├── WelcomeController.h ├── WelcomeController.m ├── WhatSearchDataSource.h ├── WhatSearchDataSource.m ├── WhoWhat.h ├── WhoWhat.m ├── ZKDescribeSObject_additions.h ├── ZKDescribeSObject_additions.m ├── cases32.png ├── entourage scripts │ ├── Add Email to Salesforce.com.scpt │ └── Create Case In Salesforce.com.scpt ├── entourage.png ├── mail scripts │ ├── Add Email to Salesforce.com.scpt │ └── Create Case In Salesforce.com.scpt ├── mail32.png ├── mail_icon.png ├── maildrop.icns ├── maildrop.sdef ├── maildrop.xcodeproj │ └── project.pbxproj ├── maildrop32.png ├── maildropGrowl.scpt ├── maildrop_Prefix.pch ├── main.m ├── outlook scripts │ ├── Add Email to Salesforce.com.scpt │ └── Create Case In Salesforce.com.scpt └── outlook_icon.png └── onlinehelp ├── css ├── accessPage.css ├── genlist.html ├── genlist_style.css ├── indexPage.css └── topicPage.css ├── default.aspx ├── gfx ├── add_email_button.png ├── attachments.png ├── button_bar.png ├── case.jpg ├── config_columns.png ├── config_columns_menu.png ├── entourage.jpg ├── entourage_scripts.png ├── entourage_scripts2.png ├── entourage_select.png ├── growl.png ├── growlicon.png ├── icon.png ├── iconSmall.png ├── login.png ├── mail.jpg ├── mail_icon.png ├── mail_scripts.png ├── newcontact.png ├── orngbullet.gif ├── outlook_icon.png ├── preferences.png ├── scriptutility.png ├── splashScreenshot.png ├── task.png ├── task_layout.png └── whowhat.png ├── help template License.txt ├── index.html └── pages ├── activity.html ├── attachments.html ├── buttonbar.html ├── clients.html ├── growl.html ├── login.html ├── mail.activity.html ├── mail.case.html ├── preferences.html └── scripting_menu.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/README.md -------------------------------------------------------------------------------- /common/Login.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/common/Login.nib/classes.nib -------------------------------------------------------------------------------- /common/Login.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/common/Login.nib/info.nib -------------------------------------------------------------------------------- /common/Login.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/common/Login.nib/keyedobjects.nib -------------------------------------------------------------------------------- /common/ZKLoginController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/common/ZKLoginController.h -------------------------------------------------------------------------------- /common/ZKLoginController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/common/ZKLoginController.m -------------------------------------------------------------------------------- /common/credential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/common/credential.h -------------------------------------------------------------------------------- /common/credential.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/common/credential.m -------------------------------------------------------------------------------- /common/minus-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/common/minus-8.png -------------------------------------------------------------------------------- /common/plus-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/common/plus-8.png -------------------------------------------------------------------------------- /maildrop/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/AppDelegate.h -------------------------------------------------------------------------------- /maildrop/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/AppDelegate.m -------------------------------------------------------------------------------- /maildrop/AsItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/AsItem.h -------------------------------------------------------------------------------- /maildrop/AsItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/AsItem.m -------------------------------------------------------------------------------- /maildrop/Attachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/Attachment.h -------------------------------------------------------------------------------- /maildrop/Attachment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/Attachment.m -------------------------------------------------------------------------------- /maildrop/ButtonBarController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/ButtonBarController.h -------------------------------------------------------------------------------- /maildrop/ButtonBarController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/ButtonBarController.m -------------------------------------------------------------------------------- /maildrop/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/Constants.h -------------------------------------------------------------------------------- /maildrop/Constants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/Constants.m -------------------------------------------------------------------------------- /maildrop/CreateActivityController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/CreateActivityController.h -------------------------------------------------------------------------------- /maildrop/CreateActivityController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/CreateActivityController.m -------------------------------------------------------------------------------- /maildrop/Credits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/Credits.html -------------------------------------------------------------------------------- /maildrop/Email.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/Email.h -------------------------------------------------------------------------------- /maildrop/Email.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/Email.m -------------------------------------------------------------------------------- /maildrop/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /maildrop/English.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/English.lproj/Localizable.strings -------------------------------------------------------------------------------- /maildrop/English.lproj/MainMenu.nib/designable.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/English.lproj/MainMenu.nib/designable.nib -------------------------------------------------------------------------------- /maildrop/English.lproj/MainMenu.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/English.lproj/MainMenu.nib/keyedobjects.nib -------------------------------------------------------------------------------- /maildrop/English.lproj/help.tmproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/English.lproj/help.tmproj -------------------------------------------------------------------------------- /maildrop/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/Info.plist -------------------------------------------------------------------------------- /maildrop/LionInfoWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/LionInfoWindowController.h -------------------------------------------------------------------------------- /maildrop/LionInfoWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/LionInfoWindowController.m -------------------------------------------------------------------------------- /maildrop/LoginController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/LoginController.h -------------------------------------------------------------------------------- /maildrop/LoginController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/LoginController.m -------------------------------------------------------------------------------- /maildrop/NSData-Base64Extensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/NSData-Base64Extensions.h -------------------------------------------------------------------------------- /maildrop/NSData-Base64Extensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/NSData-Base64Extensions.m -------------------------------------------------------------------------------- /maildrop/SObjectPermsWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/SObjectPermsWrapper.h -------------------------------------------------------------------------------- /maildrop/SObjectPermsWrapper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/SObjectPermsWrapper.m -------------------------------------------------------------------------------- /maildrop/Sparkle.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /maildrop/Sparkle.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /maildrop/Sparkle.framework/Sparkle: -------------------------------------------------------------------------------- 1 | Versions/Current/Sparkle -------------------------------------------------------------------------------- /maildrop/Sparkle.framework/Versions/A/Headers/NSApplication+AppCopies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/Sparkle.framework/Versions/A/Headers/NSApplication+AppCopies.h -------------------------------------------------------------------------------- /maildrop/Sparkle.framework/Versions/A/Headers/NSFileManager+Authentication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/Sparkle.framework/Versions/A/Headers/NSFileManager+Authentication.h -------------------------------------------------------------------------------- /maildrop/Sparkle.framework/Versions/A/Headers/NSFileManager+Verification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/Sparkle.framework/Versions/A/Headers/NSFileManager+Verification.h -------------------------------------------------------------------------------- /maildrop/Sparkle.framework/Versions/A/Headers/NSString+extras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/Sparkle.framework/Versions/A/Headers/NSString+extras.h -------------------------------------------------------------------------------- /maildrop/Sparkle.framework/Versions/A/Headers/RSS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/Sparkle.framework/Versions/A/Headers/RSS.h -------------------------------------------------------------------------------- /maildrop/Sparkle.framework/Versions/A/Headers/SUAppcast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/Sparkle.framework/Versions/A/Headers/SUAppcast.h -------------------------------------------------------------------------------- /maildrop/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h -------------------------------------------------------------------------------- /maildrop/Sparkle.framework/Versions/A/Headers/SUAutomaticUpdateAlert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/Sparkle.framework/Versions/A/Headers/SUAutomaticUpdateAlert.h -------------------------------------------------------------------------------- /maildrop/Sparkle.framework/Versions/A/Headers/SUConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/Sparkle.framework/Versions/A/Headers/SUConstants.h -------------------------------------------------------------------------------- /maildrop/Sparkle.framework/Versions/A/Headers/SUStatusChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/Sparkle.framework/Versions/A/Headers/SUStatusChecker.h -------------------------------------------------------------------------------- /maildrop/Sparkle.framework/Versions/A/Headers/SUStatusController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/Sparkle.framework/Versions/A/Headers/SUStatusController.h -------------------------------------------------------------------------------- /maildrop/Sparkle.framework/Versions/A/Headers/SUUnarchiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/Sparkle.framework/Versions/A/Headers/SUUnarchiver.h -------------------------------------------------------------------------------- /maildrop/Sparkle.framework/Versions/A/Headers/SUUpdateAlert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/Sparkle.framework/Versions/A/Headers/SUUpdateAlert.h -------------------------------------------------------------------------------- /maildrop/Sparkle.framework/Versions/A/Headers/SUUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/Sparkle.framework/Versions/A/Headers/SUUpdater.h -------------------------------------------------------------------------------- /maildrop/Sparkle.framework/Versions/A/Headers/SUUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/Sparkle.framework/Versions/A/Headers/SUUtilities.h -------------------------------------------------------------------------------- /maildrop/Sparkle.framework/Versions/A/Headers/Sparkle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/Sparkle.framework/Versions/A/Headers/Sparkle.h -------------------------------------------------------------------------------- /maildrop/Sparkle.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/Sparkle.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /maildrop/Sparkle.framework/Versions/A/Resources/SUStatus.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/Sparkle.framework/Versions/A/Resources/SUStatus.nib/classes.nib -------------------------------------------------------------------------------- /maildrop/Sparkle.framework/Versions/A/Resources/SUStatus.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/Sparkle.framework/Versions/A/Resources/SUStatus.nib/info.nib -------------------------------------------------------------------------------- /maildrop/Sparkle.framework/Versions/A/Resources/SUStatus.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/Sparkle.framework/Versions/A/Resources/SUStatus.nib/keyedobjects.nib -------------------------------------------------------------------------------- /maildrop/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib/classes.nib -------------------------------------------------------------------------------- /maildrop/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib/info.nib -------------------------------------------------------------------------------- /maildrop/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib -------------------------------------------------------------------------------- /maildrop/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib/classes.nib -------------------------------------------------------------------------------- /maildrop/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib/info.nib -------------------------------------------------------------------------------- /maildrop/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib/keyedobjects.nib -------------------------------------------------------------------------------- /maildrop/Sparkle.framework/Versions/A/Resources/en.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/Sparkle.framework/Versions/A/Resources/en.lproj/Sparkle.strings -------------------------------------------------------------------------------- /maildrop/Sparkle.framework/Versions/A/Sparkle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/Sparkle.framework/Versions/A/Sparkle -------------------------------------------------------------------------------- /maildrop/Sparkle.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /maildrop/WelcomeController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/WelcomeController.h -------------------------------------------------------------------------------- /maildrop/WelcomeController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/WelcomeController.m -------------------------------------------------------------------------------- /maildrop/WhatSearchDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/WhatSearchDataSource.h -------------------------------------------------------------------------------- /maildrop/WhatSearchDataSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/WhatSearchDataSource.m -------------------------------------------------------------------------------- /maildrop/WhoWhat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/WhoWhat.h -------------------------------------------------------------------------------- /maildrop/WhoWhat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/WhoWhat.m -------------------------------------------------------------------------------- /maildrop/ZKDescribeSObject_additions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/ZKDescribeSObject_additions.h -------------------------------------------------------------------------------- /maildrop/ZKDescribeSObject_additions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/ZKDescribeSObject_additions.m -------------------------------------------------------------------------------- /maildrop/cases32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/cases32.png -------------------------------------------------------------------------------- /maildrop/entourage scripts/Add Email to Salesforce.com.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/entourage scripts/Add Email to Salesforce.com.scpt -------------------------------------------------------------------------------- /maildrop/entourage scripts/Create Case In Salesforce.com.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/entourage scripts/Create Case In Salesforce.com.scpt -------------------------------------------------------------------------------- /maildrop/entourage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/entourage.png -------------------------------------------------------------------------------- /maildrop/mail scripts/Add Email to Salesforce.com.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/mail scripts/Add Email to Salesforce.com.scpt -------------------------------------------------------------------------------- /maildrop/mail scripts/Create Case In Salesforce.com.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/mail scripts/Create Case In Salesforce.com.scpt -------------------------------------------------------------------------------- /maildrop/mail32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/mail32.png -------------------------------------------------------------------------------- /maildrop/mail_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/mail_icon.png -------------------------------------------------------------------------------- /maildrop/maildrop.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/maildrop.icns -------------------------------------------------------------------------------- /maildrop/maildrop.sdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/maildrop.sdef -------------------------------------------------------------------------------- /maildrop/maildrop.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/maildrop.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /maildrop/maildrop32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/maildrop32.png -------------------------------------------------------------------------------- /maildrop/maildropGrowl.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/maildropGrowl.scpt -------------------------------------------------------------------------------- /maildrop/maildrop_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/maildrop_Prefix.pch -------------------------------------------------------------------------------- /maildrop/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/main.m -------------------------------------------------------------------------------- /maildrop/outlook scripts/Add Email to Salesforce.com.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/outlook scripts/Add Email to Salesforce.com.scpt -------------------------------------------------------------------------------- /maildrop/outlook scripts/Create Case In Salesforce.com.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/outlook scripts/Create Case In Salesforce.com.scpt -------------------------------------------------------------------------------- /maildrop/outlook_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/maildrop/outlook_icon.png -------------------------------------------------------------------------------- /onlinehelp/css/accessPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/onlinehelp/css/accessPage.css -------------------------------------------------------------------------------- /onlinehelp/css/genlist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/onlinehelp/css/genlist.html -------------------------------------------------------------------------------- /onlinehelp/css/genlist_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/onlinehelp/css/genlist_style.css -------------------------------------------------------------------------------- /onlinehelp/css/indexPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/onlinehelp/css/indexPage.css -------------------------------------------------------------------------------- /onlinehelp/css/topicPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/onlinehelp/css/topicPage.css -------------------------------------------------------------------------------- /onlinehelp/default.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/onlinehelp/default.aspx -------------------------------------------------------------------------------- /onlinehelp/gfx/add_email_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/onlinehelp/gfx/add_email_button.png -------------------------------------------------------------------------------- /onlinehelp/gfx/attachments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/onlinehelp/gfx/attachments.png -------------------------------------------------------------------------------- /onlinehelp/gfx/button_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/onlinehelp/gfx/button_bar.png -------------------------------------------------------------------------------- /onlinehelp/gfx/case.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/onlinehelp/gfx/case.jpg -------------------------------------------------------------------------------- /onlinehelp/gfx/config_columns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/onlinehelp/gfx/config_columns.png -------------------------------------------------------------------------------- /onlinehelp/gfx/config_columns_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/onlinehelp/gfx/config_columns_menu.png -------------------------------------------------------------------------------- /onlinehelp/gfx/entourage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/onlinehelp/gfx/entourage.jpg -------------------------------------------------------------------------------- /onlinehelp/gfx/entourage_scripts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/onlinehelp/gfx/entourage_scripts.png -------------------------------------------------------------------------------- /onlinehelp/gfx/entourage_scripts2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/onlinehelp/gfx/entourage_scripts2.png -------------------------------------------------------------------------------- /onlinehelp/gfx/entourage_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/onlinehelp/gfx/entourage_select.png -------------------------------------------------------------------------------- /onlinehelp/gfx/growl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/onlinehelp/gfx/growl.png -------------------------------------------------------------------------------- /onlinehelp/gfx/growlicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/onlinehelp/gfx/growlicon.png -------------------------------------------------------------------------------- /onlinehelp/gfx/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/onlinehelp/gfx/icon.png -------------------------------------------------------------------------------- /onlinehelp/gfx/iconSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/onlinehelp/gfx/iconSmall.png -------------------------------------------------------------------------------- /onlinehelp/gfx/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/onlinehelp/gfx/login.png -------------------------------------------------------------------------------- /onlinehelp/gfx/mail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/onlinehelp/gfx/mail.jpg -------------------------------------------------------------------------------- /onlinehelp/gfx/mail_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/onlinehelp/gfx/mail_icon.png -------------------------------------------------------------------------------- /onlinehelp/gfx/mail_scripts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/onlinehelp/gfx/mail_scripts.png -------------------------------------------------------------------------------- /onlinehelp/gfx/newcontact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/onlinehelp/gfx/newcontact.png -------------------------------------------------------------------------------- /onlinehelp/gfx/orngbullet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/onlinehelp/gfx/orngbullet.gif -------------------------------------------------------------------------------- /onlinehelp/gfx/outlook_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/onlinehelp/gfx/outlook_icon.png -------------------------------------------------------------------------------- /onlinehelp/gfx/preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/onlinehelp/gfx/preferences.png -------------------------------------------------------------------------------- /onlinehelp/gfx/scriptutility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/onlinehelp/gfx/scriptutility.png -------------------------------------------------------------------------------- /onlinehelp/gfx/splashScreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/onlinehelp/gfx/splashScreenshot.png -------------------------------------------------------------------------------- /onlinehelp/gfx/task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/onlinehelp/gfx/task.png -------------------------------------------------------------------------------- /onlinehelp/gfx/task_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/onlinehelp/gfx/task_layout.png -------------------------------------------------------------------------------- /onlinehelp/gfx/whowhat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/onlinehelp/gfx/whowhat.png -------------------------------------------------------------------------------- /onlinehelp/help template License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/onlinehelp/help template License.txt -------------------------------------------------------------------------------- /onlinehelp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/onlinehelp/index.html -------------------------------------------------------------------------------- /onlinehelp/pages/activity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/onlinehelp/pages/activity.html -------------------------------------------------------------------------------- /onlinehelp/pages/attachments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/onlinehelp/pages/attachments.html -------------------------------------------------------------------------------- /onlinehelp/pages/buttonbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/onlinehelp/pages/buttonbar.html -------------------------------------------------------------------------------- /onlinehelp/pages/clients.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/onlinehelp/pages/clients.html -------------------------------------------------------------------------------- /onlinehelp/pages/growl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/onlinehelp/pages/growl.html -------------------------------------------------------------------------------- /onlinehelp/pages/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/onlinehelp/pages/login.html -------------------------------------------------------------------------------- /onlinehelp/pages/mail.activity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/onlinehelp/pages/mail.activity.html -------------------------------------------------------------------------------- /onlinehelp/pages/mail.case.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/onlinehelp/pages/mail.case.html -------------------------------------------------------------------------------- /onlinehelp/pages/preferences.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/onlinehelp/pages/preferences.html -------------------------------------------------------------------------------- /onlinehelp/pages/scripting_menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfell/maildrop/HEAD/onlinehelp/pages/scripting_menu.html --------------------------------------------------------------------------------