2002-06-22 06:10:49 +02:00
|
|
|
productname = 'OfflineIMAP'
|
2002-07-22 03:46:40 +02:00
|
|
|
versionstr = "3.0.3"
|
|
|
|
revno = long('$Rev: 152 $'[6:-2])
|
2002-07-18 01:06:27 +02:00
|
|
|
revstr = "Rev %d" % revno
|
2002-07-22 03:46:40 +02:00
|
|
|
datestr = '$Date: 2002-07-21 15:46:40 -0500 (Sun, 21 Jul 2002) $'
|
2002-07-18 02:57:07 +02:00
|
|
|
|
2002-06-22 06:10:49 +02:00
|
|
|
|
|
|
|
versionlist = versionstr.split(".")
|
|
|
|
major = versionlist[0]
|
|
|
|
minor = versionlist[1]
|
|
|
|
patch = versionlist[2]
|
2002-06-22 07:29:48 +02:00
|
|
|
copyright = "Copyright (C) 2002 John Goerzen"
|
2002-06-22 06:10:49 +02:00
|
|
|
author = "John Goerzen"
|
|
|
|
author_email = "jgoerzen@complete.org"
|
|
|
|
description = "Disconnected Universal IMAP Mail Synchronization/Reader Support"
|
2002-07-18 01:06:27 +02:00
|
|
|
bigcopyright = """%(productname)s %(versionstr)s (%(revstr)s)
|
|
|
|
%(copyright)s <%(author_email)s>""" % locals()
|
2002-06-22 07:29:48 +02:00
|
|
|
|
2002-07-11 15:25:53 +02:00
|
|
|
banner = bigcopyright + """
|
2002-06-22 07:29:48 +02:00
|
|
|
This software comes with ABSOLUTELY NO WARRANTY; see the file
|
|
|
|
COPYING for details. This is free software, and you are welcome
|
2002-07-11 15:25:53 +02:00
|
|
|
to distribute it under the conditions laid out in COPYING."""
|
2002-06-22 07:29:48 +02:00
|
|
|
|
2002-06-22 06:10:49 +02:00
|
|
|
homepage = "http://www.quux.org/devel/offlineimap"
|
|
|
|
homegopher = "gopher://quux.org/1/devel/offlineimap"
|
|
|
|
license = """Copyright (C) 2002 John Goerzen <jgoerzen@complete.org>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA"""
|
2002-07-12 09:51:52 +02:00
|
|
|
|
|
|
|
cmdhelp = """
|
|
|
|
offlineimap [ -1 ] [ -a accountlist ] [ -c configfile ]
|
|
|
|
[ -d ] [ -u interface ]
|
|
|
|
|
|
|
|
offlineimap -h | --help
|
|
|
|
|
|
|
|
-1 Disable all multithreading operations and use
|
|
|
|
solely a single-thread sync. This effectively sets
|
|
|
|
the maxsyncaccounts and all maxconnections configu-
|
|
|
|
ration file variables to 1.
|
|
|
|
|
|
|
|
-a accountlist
|
|
|
|
Overrides the accounts section in the config file.
|
|
|
|
Lets you specify a particular account or set of
|
|
|
|
accounts to sync without having to edit the config
|
|
|
|
file. You might use this to exclude certain
|
|
|
|
accounts, or to sync some accounts that you nor-
|
|
|
|
mally prefer not to.
|
|
|
|
|
|
|
|
-c configfile
|
|
|
|
Specifies a configuration file to use in lieu of
|
|
|
|
the default, ~/.offlineimaprc.
|
|
|
|
|
|
|
|
-d Enables IMAP protocol stream and parsing debugging.
|
|
|
|
This is useful if you are trying to track down a
|
|
|
|
malfunction or figure out what is going on under
|
|
|
|
the hood. I suggest that you use this with -1 in
|
|
|
|
order to make the results more sensible. Note that
|
|
|
|
this output will contain full IMAP protocol in
|
|
|
|
plain text, including passwords, so take care to
|
|
|
|
remove that from the debugging output before send-
|
|
|
|
ing it to anyone else.
|
|
|
|
|
|
|
|
-h, --help
|
|
|
|
Show summary of options.
|
|
|
|
|
|
|
|
-u interface
|
|
|
|
Specifies an alternative user interface module to
|
|
|
|
use. This overrides the default specified in the
|
|
|
|
configuration file. The UI specified with -u will
|
|
|
|
be forced to be used, even if its isuable() method
|
|
|
|
states that it cannot be. Use this option with
|
|
|
|
care.
|
|
|
|
"""
|