diff options
author | https://www.google.com/accounts/o8/id?id=AItOawmkBwMWvNKZZCge_YqobCSILPMeK6xbFw8 <TobiasTheViking@web> | 2014-01-10 14:32:34 +0000 |
---|---|---|
committer | admin <admin@branchable.com> | 2014-01-10 14:32:34 +0000 |
commit | ed33e1789723cfad418ab2562e55f0416acc3f4f (patch) | |
tree | 7343f487a6fb1ffeaf0f8f00f2fdc4dd632fa294 /doc/tips/imapannex.mdwn | |
parent | d6dc57a5e2e31589639b7c8235fcb4fc785d7e22 (diff) |
Diffstat (limited to 'doc/tips/imapannex.mdwn')
-rw-r--r-- | doc/tips/imapannex.mdwn | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/doc/tips/imapannex.mdwn b/doc/tips/imapannex.mdwn index e9963df34..9b2d8b1f2 100644 --- a/doc/tips/imapannex.mdwn +++ b/doc/tips/imapannex.mdwn @@ -15,13 +15,11 @@ Clone the git repository in your home folder. This should make a ~/imapannex folder # Setup -Run the program once to set it up. +Make the file executable, and link it into PATH - cd ~/imapannex; python2 imapannex.py + cd ~/imapannex; chmod +x git-annex-remote-imap; sudo ln -sf `pwd`/git-annex-remote-imap /usr/local/bin/git-annex-remote-imap # Commands for gitannex: - git config annex.imap-hook '/usr/bin/python2 ~/imapannex/imapannex.py' - git annex initremote imap type=hook hooktype=imap encryption=shared + USERNAME="username@provider.com" PASSWORD="password" git annex initremote imap type=external externaltype=imap encryption=shared folder=gitannex method="Normal password" ssl="SSL/TLS" host="imap.host.com" port="993" git annex describe imap "the imap library" - git annex wanted imap exclude=largerthan=30mb |