/offlineimap/head: changeset 221
Readying 3.2.3. Updated docs, version, etc.
This commit is contained in:
parent
9cbb14f5dd
commit
d9836ef791
@ -1,3 +1,52 @@
|
||||
------------------------------------------------------------------------
|
||||
rev 220: jgoerzen | 2002-08-08 10:18:45 -0500 (Thu, 08 Aug 2002) | 2 lines
|
||||
Changed paths:
|
||||
U /offlineimap/head/offlineimap/repository/Maildir.py
|
||||
|
||||
Now logs folder names of return value when debugging.
|
||||
|
||||
------------------------------------------------------------------------
|
||||
rev 219: jgoerzen | 2002-08-08 10:17:36 -0500 (Thu, 08 Aug 2002) | 2 lines
|
||||
Changed paths:
|
||||
U /offlineimap/head/offlineimap/repository/Maildir.py
|
||||
|
||||
Updated debugging
|
||||
|
||||
------------------------------------------------------------------------
|
||||
rev 218: jgoerzen | 2002-08-08 10:15:30 -0500 (Thu, 08 Aug 2002) | 2 lines
|
||||
Changed paths:
|
||||
U /offlineimap/head/offlineimap/repository/Maildir.py
|
||||
|
||||
Added maildir repository debug code
|
||||
|
||||
------------------------------------------------------------------------
|
||||
rev 217: jgoerzen | 2002-08-08 10:03:36 -0500 (Thu, 08 Aug 2002) | 4 lines
|
||||
Changed paths:
|
||||
U /offlineimap/head/debian/changelog
|
||||
U /offlineimap/head/offlineimap/imaplib.py
|
||||
U /offlineimap/head/offlineimap/repository/Maildir.py
|
||||
U /offlineimap/head/offlineimap/ui/TTY.py
|
||||
U /offlineimap/head/offlineimap/ui/UIBase.py
|
||||
U /offlineimap/head/offlineimap.1
|
||||
U /offlineimap/head/offlineimap.py
|
||||
|
||||
-d now takes a parameter to specify what kind of debugging to do.
|
||||
imaplib now does debugging through the UI system.
|
||||
UIBase now has a debugging process.
|
||||
|
||||
------------------------------------------------------------------------
|
||||
rev 215: jgoerzen | 2002-08-07 20:28:34 -0500 (Wed, 07 Aug 2002) | 2 lines
|
||||
Changed paths:
|
||||
U /offlineimap/head/ChangeLog
|
||||
U /offlineimap/head/debian/changelog
|
||||
U /offlineimap/head/manual.html
|
||||
U /offlineimap/head/manual.pdf
|
||||
U /offlineimap/head/manual.ps
|
||||
U /offlineimap/head/manual.txt
|
||||
U /offlineimap/head/offlineimap/version.py
|
||||
|
||||
Readying version 3.2.2.
|
||||
|
||||
------------------------------------------------------------------------
|
||||
rev 214: jgoerzen | 2002-08-07 17:27:55 -0500 (Wed, 07 Aug 2002) | 2 lines
|
||||
Changed paths:
|
||||
|
@ -26,7 +26,7 @@
|
||||
|
||||
<hr>
|
||||
<!-- Creator : groff version 1.17.2 -->
|
||||
<!-- CreationDate: Wed Aug 7 20:27:02 2002 -->
|
||||
<!-- CreationDate: Thu Aug 8 10:19:22 2002 -->
|
||||
<a name="NAME"></a>
|
||||
<h2>NAME</h2>
|
||||
<table width="100%" border=0 rules="none" frame="void"
|
||||
@ -43,8 +43,9 @@ OfflineIMAP - Powerful IMAP/Maildir synchronization and reader support</td></tab
|
||||
<td width="10%"></td><td width="90%">
|
||||
<b>offlineimap</b> [ <b>-1</b> ] [ <b>-P</b>
|
||||
<i>profiledir</i> ] [ <b>-a</b> <i>accountlist</i> ] [
|
||||
<b>-c</b> <i>configfile</i> ] [ <b>-d</b> ] [ <b>-o</b> ] [
|
||||
<b>-u</b> <i>interface</i> ]</td></table>
|
||||
<b>-c</b> <i>configfile</i> ] [ <b>-d</b>
|
||||
<i>debugtype[,debugtype...]</i> ] [ <b>-o</b> ] [ <b>-u</b>
|
||||
<i>interface</i> ]</td></table>
|
||||
|
||||
<table width="100%" border=0 rules="none" frame="void"
|
||||
cols="2" cellspacing="0" cellpadding="0">
|
||||
@ -375,20 +376,31 @@ default, <i>~/.offlineimaprc.</i></td></table>
|
||||
cols="2" cellspacing="0" cellpadding="0">
|
||||
<tr valign="top" align="left">
|
||||
<td width="10%"></td><td width="90%">
|
||||
<b>-d</b></td></table>
|
||||
<b>-d</b> <i>debugtype[,debugtype...]</i></td></table>
|
||||
|
||||
<table width="100%" border=0 rules="none" frame="void"
|
||||
cols="2" cellspacing="0" cellpadding="0">
|
||||
<tr valign="top" align="left">
|
||||
<td width="21%"></td><td width="79%">
|
||||
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 <b>-1</b> 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 sending it to
|
||||
anyone else.</td></table>
|
||||
Enables debugging for OfflineIMAP. 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
|
||||
<b>-1</b> in order to make the results more
|
||||
sensible.</td></table>
|
||||
|
||||
<table width="100%" border=0 rules="none" frame="void"
|
||||
cols="2" cellspacing="0" cellpadding="0">
|
||||
<tr valign="top" align="left">
|
||||
<td width="21%"></td><td width="79%">
|
||||
-d now requires one or more debugtypes, separated by commas.
|
||||
These define what exactly will be debugged, and so far
|
||||
include two options: <b>imap</b> and <b>maildir.</b> The
|
||||
<b>imap</b> option will enable IMAP protocol stream and
|
||||
parsing debugging. Note that the output may contain
|
||||
passwords, so take care to remove that from the debugging
|
||||
output before sending it to anyone else. The <b>maildir</b>
|
||||
option will enable debugging for certain Maildir
|
||||
operations.</td></table>
|
||||
|
||||
<table width="100%" border=0 rules="none" frame="void"
|
||||
cols="2" cellspacing="0" cellpadding="0">
|
||||
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@ -8,7 +8,8 @@ NAME
|
||||
|
||||
SYNOPSIS
|
||||
offlineimap [ -1 ] [ -P profiledir ] [ -a accountlist ] [
|
||||
-c configfile ] [ -d ] [ -o ] [ -u interface ]
|
||||
-c configfile ] [ -d debugtype[,debugtype...] ] [ -o ] [
|
||||
-u interface ]
|
||||
|
||||
offlineimap -h | --help
|
||||
|
||||
@ -178,15 +179,22 @@ OPTIONS
|
||||
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.
|
||||
-d debugtype[,debugtype...]
|
||||
Enables debugging for OfflineIMAP. This is useful
|
||||
if you are trying to track down a malfunction or
|
||||
figure out what is going on under the hood. I sug-
|
||||
gest that you use this with -1 in order to make the
|
||||
results more sensible.
|
||||
|
||||
-d now requires one or more debugtypes, separated
|
||||
by commas. These define what exactly will be
|
||||
debugged, and so far include two options: imap and
|
||||
maildir. The imap option will enable IMAP protocol
|
||||
stream and parsing debugging. Note that the output
|
||||
may contain passwords, so take care to remove that
|
||||
from the debugging output before sending it to any-
|
||||
one else. The maildir option will enable debugging
|
||||
for certain Maildir operations.
|
||||
|
||||
-o Run only once, ignoring any autorefresh setting in
|
||||
the config file.
|
||||
|
@ -1,8 +1,8 @@
|
||||
productname = 'OfflineIMAP'
|
||||
versionstr = "3.2.2"
|
||||
revno = long('$Rev: 215 $'[6:-2])
|
||||
revno = long('$Rev: 221 $'[6:-2])
|
||||
revstr = "Rev %d" % revno
|
||||
datestr = '$Date: 2002-08-07 20:28:34 -0500 (Wed, 07 Aug 2002) $'
|
||||
datestr = '$Date: 2002-08-08 10:21:56 -0500 (Thu, 08 Aug 2002) $'
|
||||
|
||||
|
||||
versionlist = versionstr.split(".")
|
||||
@ -41,7 +41,8 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA"""
|
||||
|
||||
cmdhelp = """
|
||||
offlineimap [ -1 ] [ -P profiledir ] [ -a accountlist ] [
|
||||
-c configfile ] [ -d ] [ -o ] [ -u interface ]
|
||||
-c configfile ] [ -d debugtype[,debugtype...] ] [ -o ] [
|
||||
-u interface ]
|
||||
|
||||
offlineimap -h | --help
|
||||
|
||||
@ -75,15 +76,22 @@ cmdhelp = """
|
||||
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.
|
||||
-d debugtype[,debugtype...]
|
||||
Enables debugging for OfflineIMAP. This is useful
|
||||
if you are trying to track down a malfunction or
|
||||
figure out what is going on under the hood. I sug-
|
||||
gest that you use this with -1 in order to make the
|
||||
results more sensible.
|
||||
|
||||
-d now requires one or more debugtypes, separated
|
||||
by commas. These define what exactly will be
|
||||
debugged, and so far include two options: imap and
|
||||
maildir. The imap option will enable IMAP protocol
|
||||
stream and parsing debugging. Note that the output
|
||||
may contain passwords, so take care to remove that
|
||||
from the debugging output before sending it to any-
|
||||
one else. The maildir option will enable debugging
|
||||
for certain Maildir operations.
|
||||
|
||||
-o Run only once, ignoring any autorefresh setting in
|
||||
the config file.
|
||||
@ -97,11 +105,7 @@ cmdhelp = """
|
||||
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.
|
||||
care. The pre-defined options are listed in the
|
||||
USER INTERFACES section.
|
||||
|
||||
The pre-defined options are Tk.TKUI (a graphical
|
||||
interface), TTY.TTYUI (a text-mode interface), Non-
|
||||
interactive.Basic (a non-interactive mode suitable
|
||||
for cronning), and Noninteractive.Quiet (a mode
|
||||
that generates no output except for errors).
|
||||
"""
|
||||
|
Loading…
Reference in New Issue
Block a user