Skip to content

Instantly share code, notes, and snippets.

@alloy-d
Created December 1, 2019 21:41
Show Gist options
  • Save alloy-d/638ffc5ea14d58a037a26c58002a1d58 to your computer and use it in GitHub Desktop.
Save alloy-d/638ffc5ea14d58a037a26c58002a1d58 to your computer and use it in GitHub Desktop.
launchd offlineimap configuration
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>net.alloy-d.offlineimap</string>
<key>EnvironmentVariables</key>
<dict>
<key>PATH</key>
<string>/usr/local/bin:/usr/bin:/bin</string>
</dict>
<key>ProgramArguments</key>
<array>
<string>/usr/local/bin/offlineimap</string>
</array>
<key>Nice</key>
<integer>1</integer>
<key>StartInterval</key>
<integer>300</integer>
<key>StandardErrorPath</key>
<string>/Users/awl/.mail/offlineimap.err</string>
<key>StandardOutPath</key>
<string>/Users/awl/.mail/offlineimap.out</string>
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment