aboutsummaryrefslogtreecommitdiff
path: root/handlers/maildir.in
AgeCommit message (Collapse)Author
2012-03-27remove rsyncflags and excludes from maildir handler, they are not used anywhereMicah Anderson
2012-03-27remove maildir handler 'loadlimit' - it is not used anywhereMicah Anderson
2009-07-09added sshoptions variable to the maildir handler for arbitrary options that ↵Micah Anderson
you might need to pass updated the example.maildir to include this option, as well as detail the missing desid_file, destport
2009-05-23Add a vim modeline with indentation settings.Matthijs Kooijman
The modelines added match the emacs lines already present and also set the filetype to sh (just like the emacs lines).
2009-05-23Make all indentation consistent.Matthijs Kooijman
Previously, there were many indentation styles in use: Real tabs, 2, 3 or 4 spaces, mixing these within the same file, function or even within a single line. This commit changes all bash scripts in the handlers, src and lib dirs to use consistent indentation: three spaces are now used everywhere. Other files (e.g. Makefiles) are left untouched. Additionally, this commit removes all trailing whitespace.
2008-08-08fix location of deleted_on file and add missing destid_file options in ↵Micah Anderson
maildir handler
2008-07-06 . make maildir helper look in every subdirectory of the source ↵Micah Anderson
directory for maildirs, rather than just looking in the directories [a-zA-Z0-9], thanks for the patch from chris@cenolan.com (Trac#43)
2008-06-19add an option to maildir handler to enable you to specify a particularMicah Anderson
ssh identity file, defaulting to the expected /root/.ssh/id_rsa. This is important to have if you are trying to backup to a different user on a backuphost than other handlers are using. For example, if the rdiff handler is connecting to backalbatross@backupserver-pn using /root/.ssh/id_rsa for public key authentication, and you want to configure the maildir handler to connect as user backmaildir@backupserver-pn you will might want to specify a different identity file for that authentication (if you do not want to share the id file between the 'backalbatross' and 'backmaildir' users). Note: this cannot be accomplished with a ssh config file because that file is host based, ie. you can only specify one user per host specified in the config
2008-02-19change the date format for the deleted timestampElijah Saxon
2008-02-19fixed bug where maildirs that start with a number were skipped. make deleted ↵Elijah Saxon
maildirs record the date they were deleted
2008-02-13move -maxdepth 1 option before -type d due to find giving this warning when ↵Micah Anderson
it is after: find: warning: you have specified the -maxdepth option after a non-option argument -type, but options are not positional (-maxdepth affects tests specified before it as well as those specified after it). Please specify options before other arguments.
2007-11-24fix Trac#25Micah Anderson
2007-11-24add a maildir examples fileMicah Anderson
2007-10-12fixed autotools build, broken since r466, inhandlers/Makefile.amintrigeri