Changes between Version 22 and Version 23 of howto/SetupFetchmail
- Timestamp:
- Jun 23, 2014, 1:51:31 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
howto/SetupFetchmail
v22 v23 124 124 Last you send yourself a mail and trigger a mail collection with [attachment:Restart_Fetchmail.command] and then check if the mail arrived in your local mail storage. 125 125 126 == Simple User Configuration == 127 Another possible way to setup fetchmail is to have your user run it. 128 129 Note: You will have to adjust the paths in the plist and sh files 130 131 Copy [attachment:myuser.fetchmail.plist] to /Library/LaunchDaemons/ 132 133 Create /Users/myuser/devel/scripts/fetchmail-call.sh 134 {{{ 135 #!/bin/bash 136 137 /opt/local/bin/fetchmail || [ $? -eq 1 ] 138 }}} 139 140 Then, load the plist as usual. 141 126 142 == Optional Parts == 127 143