From d3184a97cb0c0a280b48969d7ee2406cef43af64 Mon Sep 17 00:00:00 2001 From: John Goerzen Date: Wed, 6 Dec 2006 04:24:27 +0100 Subject: [PATCH] Remove docs from source tree --- FAQ.html | 335 ------ Makefile | 9 +- bin/offlineimap | 2 +- manual.html | 1872 --------------------------------- manual.pdf | Bin 37217 -> 0 bytes manual.txt | 691 ------------ offlineimap.1 | 803 -------------- offlineimap.py | 2 +- offlineimap.spec | 2 +- offlineimap/folder/Maildir.py | 5 +- offlineimap/version.py | 2 +- 11 files changed, 9 insertions(+), 3714 deletions(-) delete mode 100644 FAQ.html delete mode 100644 manual.html delete mode 100644 manual.pdf delete mode 100644 manual.txt delete mode 100644 offlineimap.1 diff --git a/FAQ.html b/FAQ.html deleted file mode 100644 index b9ed461..0000000 --- a/FAQ.html +++ /dev/null @@ -1,335 +0,0 @@ - - - - FrequentlyAskedQuestions - OfflineIMAP - - - - - -
- - - - - -
- - - - - - -
- - - - - -
-

OfflineIMAP FAQ

-

-Here are answers to some of the most frequently asked questions about OfflineIMAP. -

-
-

-

  1. Basic Questions
    1. Where do I get OfflineIMAP?
    2. -How fast is it?
    3. -What platforms does OfflineIMAP support?
      1. Use on Windows
    4. Does OfflineIMAP support mbox, mh, or anything else other than Maildir?
    5. -How do I add or delete a folder?
    6. -Does OfflineIMAP support POP?
  2. Configuration Questions
    1. Can I synchronize multiple accounts with OfflineIMAP?
    2. -How do I specify the names of folders?
    3. -How do I prevent certain folders from being synced?
    4. -What is the mailbox name recorder (mbnames) for?
  3. IMAP Server Notes
    1. Microsoft Exchange
  4. Client Notes
    1. What clients does OfflineIMAP work with?
    2. -Evolution
    3. -KMail
    4. -Mutt
      1. Do I need to use set maildir_trash?
      2. -How do I set up mbnames with mutt?
  5. Miscellaneous Questions
    1. Why are your Maildir message filenames so long?
-

-
-

Basic Questions

-

Where do I get OfflineIMAP?

-

-From its downloads page. -

-

How fast is it?

-

-OfflineIMAP has a multithreaded sync, so it should have very nice performance. -

-

-OfflineIMAP versions 2.0 and above contain a multithreaded system. A good way to experiment is by setting maxsyncaccounts to 3 and maxconnections to 3 in each account clause. -

-

-This lets OfflineIMAP open up multiple connections simultaneously. That will let it process multiple folders and messages at once. In most cases, this will increase performance of the sync. -

-

-Don't set the number too high. If you do that, things might actually slow down as your link gets saturated. Also, too many connections can cause mail servers to have excessive load. Administrators might take unkindly to this, and the server might bog down. There are many variables in the optimal setting; experimentation may help. -

-

-An informal benchmark yields these results for my setup: -

-
  • 10 minutes with MacOS X Mail.app "manual cache" -
  • 5 minutes with GNUS agent sync -
  • 20 seconds with OfflineIMAP 1.x -
  • 9 seconds with OfflineIMAP 2.x -
  • 3 seconds with OfflineIMAP 3.x "cold start" -
  • 2 seconds with OfflineIMAP 3.x "held connection" -

What platforms does OfflineIMAP support?

-

-It should run on most platforms supported by Python, which are quite a few. I do not support Windows myself, but some have made it work there. -

-

Use on Windows

-

-These answers have been reported by OfflineIMAP users. I do not run OfflineIMAP on Windows myself, so I can't directly address their accuracy. -

-

-The basic answer is that it's possible and doesn't require hacking OfflineIMAP source code. However, it's not necessarily trivial. The information below is based in instructions submitted by Chris Walker. -

-

-First, you must run OfflineIMAP in the Cygwin environment. The Windows filesystem is not powerful enough to accomodate Maildir by itself. -

-

-Next, you'll need to mount your Maildir directory in a special way. There is information for doing that at http://barnson.org/node/view/295. That site gives this example: -

-
mount -f -s -b -o managed "d:/tmp/mail" "/home/of/mail"
-

- -That URL also has more details on making OfflineIMAP work with Windows. -

-

Does OfflineIMAP support mbox, mh, or anything else other than Maildir?

-

-Not directly. Maildir was the easiest to implement. I'm not planning to write mbox code for OfflineIMAP, though if someone sent me well-written mbox support and pledged to support it, I'd commit it to the tree. -

-

-However, OfflineIMAP can directly sync accounts on two different IMAP servers together. So you could install an IMAP server on your local machine that supports mbox, sync to it, and then instruct your mail readers to use the mboxes. -

-

-Or you could install whatever IMAP server you like on the local machine, and point your mail readers to that IMAP server on localhost. -

-

How do I add or delete a folder?

-

-OfflineIMAP does not currently provide this feature. However, if you create a new folder on the remote server, OfflineIMAP will detect this and create the corresponding folder locally automatically. -

-

Does OfflineIMAP support POP?

-

-No. POP is not robust enough to do a completely reliable multi-machine sync like OfflineIMAP can do. -

-

-OfflineIMAP will never support POP. -

-

Configuration Questions

-

Can I synchronize multiple accounts with OfflineIMAP?

-

-Of course! -

-

-Just name them all in the accounts line in the general section of the configuration file, and add a per-account section for each one. -

-

-You can also optionally use the -a option when you run OfflineIMAP to request that it only operate upon a subset of the accounts for a particular run. -

-

How do I specify the names of folders?

-

-You do not need to. OfflineIMAP is smart enough to automatically figure out what folders are present on the IMAP server and synchronize them. You can use the folderfilter and nametrans configuration file options to request only certain folders and rename them as they come in if you like. -

-

How do I prevent certain folders from being synced?

-

-Use the folderfilter option. -

-

What is the mailbox name recorder (mbnames) for?

-

-Some mail readers, such as mutt, are not capable of automatically determining the names of your mailboxes. OfflineIMAP can help these programs by writing the names of the folders in a format you specify. See the example offlineimap.conf for details. -

-

IMAP Server Notes

-

-In general, OfflineIMAP works with any IMAP server that provides compatibility with the IMAP RFCs. Some servers provide imperfect compatibility that may be good enough for general clients. OfflineIMAP needs more features, specifically support for UIDs, in order to do its job accurately and completely. -

-

Microsoft Exchange

-

-Several users have reported problems with Microsoft Exchange servers in conjunction with OfflineIMAP. This generally seems to be related to the Exchange servers not properly following the IMAP standards. -

-

-Mark Biggers has posted some information to the OfflineIMAP mailing list about how he made it work. -

-

-Other users have indicated that older (5.5) releases of Exchange are so bad that they will likely not work at all. -

-

-I do not have access to Exchange servers for testing, so any problems with it, if they can even be solved at all, will require help from OfflineIMAP users to find and fix. -

-

Client Notes

-

What clients does OfflineIMAP work with?

-

-Any client that supports Maildir. Popular ones include mutt, Evolution, Thunderbird, and KMail. -

-

-With OfflineIMAP's IMAP-to-IMAP syncing, this can be even wider; see the next question. -

-

Evolution

-

-OfflineIMAP can work with Evolution. To do so, first configure your OfflineIMAP account to have sep = / in its configuration. Then, configure Evolution with the "Maildir-format mail directories" server type. For the path, you will need to specify the name of the top-level folder inside your OfflineIMAP storage location. You're now set! -

-

KMail

-

-At this time, I believe that OfflineIMAP with Maildirs is not compatible with KMail. KMail cannot work in any mode other than to move all messages out of all folders immediately, which (besides being annoying and fundamentally broken) is incompatible with OfflineIMAP. -

-

-However, I have made KMail version 3 work well with OfflineIMAP by installing an IMAP server on my local machine, having OfflineIMAP sync to that, and pointing KMail at the same server. -

-

Mutt

-

Do I need to use set maildir_trash?

-

-Other IMAP sync programs require you to do this. OfflineIMAP does not. You'll get the best results without it, in fact, though turning it on won't hurt anything. -

-

How do I set up mbnames with mutt?

-

-The example offlineimap.conf file has this example. In your offlineimap.conf, you'll list this: -

-
[mbnames]
-enabled = yes
-filename = ~/Mutt/muttrc.mailboxes
-header = "mailboxes "
-peritem = "+%(accountname)s/%(foldername)s"
-sep = " "
-footer = "\n"
-

-Then in your .muttrc: -

-
source ~/Mutt/muttrc.mailboxes
-

-You might also want to set: -

-
set mbox_type=Maildir
-set folder=$HOME/Maildirpath
-

-The OfflineIMAP manual has a more detailed example for doing this for multiple accounts. -

-

Miscellaneous Questions

-

Why are your Maildir message filenames so long?

-

-OfflineIMAP has two relevant principles: 1) never modifying your messages in any way and 2) ensuring 100% reliable synchronizations. In order to do a reliable sync, OfflineIMAP must have a way to uniquely identify each e-mail. Three pieces of information are required to do this: your account name, the folder name, and the message UID. The account name can be calculated from the path in which your messages are. The folder name can usually be as well, BUT some mail clients move messages between folders by simply moving the file, leaving the name intact. -

-

-So, OfflineIMAP must store both a UID folder ID. The folder ID is necessary so OfflineIMAP can detect a message moved to a different folder. OfflineIMAP stores the UID (U= number) and an md5sum of the foldername (FMD5= number) to facilitate this. -

-
-
- - - - - -
- - - - -
- - - -
-
- - -
- - - - - - diff --git a/Makefile b/Makefile index bddfd90..a64ee51 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 2002 - 2006 John Goerzen +# Copyright (C) 2002 John Goerzen # # # This program is free software; you can redistribute it and/or modify @@ -15,7 +15,7 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -VERSION=4.0.16 +VERSION=4.0.15 TARGZ=offlineimap_$(VERSION).tar.gz SHELL=/bin/bash @@ -32,7 +32,7 @@ clean: -rm -f manpage.links manpage.refs -find . -name auth -exec rm -vf {}/password {}/username \; -doc: faq +doc: docbook2man offlineimap.sgml docbook2man offlineimap.sgml docbook2html -u offlineimap.sgml @@ -42,9 +42,6 @@ doc: faq groff -Tascii -man offlineimap.1 | sed $$'s/.\b//g' > manual.txt -rm manpage.links manpage.refs manual.ps -faq: - curl -o FAQ.html http://software.complete.org/offlineimap/wiki/FrequentlyAskedQuestions - targz: ../$(TARGZ) ../$(TARGZ): if ! pwd | grep -q "/offlineimap-$(VERSION)$$"; then \ diff --git a/bin/offlineimap b/bin/offlineimap index 95fd2fb..a1c9193 100644 --- a/bin/offlineimap +++ b/bin/offlineimap @@ -18,4 +18,4 @@ # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA from offlineimap import init -init.startup('4.0.16') +init.startup('4.0.15') diff --git a/manual.html b/manual.html deleted file mode 100644 index a52682c..0000000 --- a/manual.html +++ /dev/null @@ -1,1872 +0,0 @@ - -OfflineIMAP Manual

I. OfflineIMAP Manual

Table of Contents
offlineimap -- Powerful IMAP/Maildir synchronization - and reader support

offlineimap

Name

OfflineIMAP -- Powerful IMAP/Maildir synchronization - and reader support

Synopsis

offlineimap [-1] [-P profiledir] [-a accountlist] [-c configfile] [-d debugtype[,...]] [-l filename] [-o] [-u interface]

offlineimap -h | --help

Description

OfflineIMAP is a tool to simplify your e-mail - reading. With OfflineIMAP, you can read the same mailbox - from multiple computers. You get a current copy of your - messages on each computer, and changes you make one place will be - visible on all other systems. For instance, you can delete a message - on your home computer, and it will appear deleted on your work - computer as well. OfflineIMAP is also useful if you want to - use a mail reader that does not have IMAP support, has poor IMAP - support, or does not provide disconnected operation. -

OfflineIMAP is FAST; it synchronizes - my two accounts with over 50 folders in 3 seconds. Other - similar tools might take over a minute, and achieve a - less-reliable result. Some mail readers can take over 10 - minutes to do the same thing, and some don't even support it - at all. Unlike other mail tools, OfflineIMAP features a - multi-threaded synchronization algorithm that can dramatically - speed up performance in many situations by synchronizing - several different things simultaneously. -

OfflineIMAP is FLEXIBLE; you can - customize which folders are synced via regular expressions, - lists, or Python expressions; a versatile and comprehensive - configuration file is used to control behavior; two user - interfaces are built-in; fine-tuning of synchronization - performance is possible; internal or external automation is - supported; SSL and PREAUTH tunnels are both supported; offline - (or "unplugged") reading is supported; and esoteric IMAP - features are supported to ensure compatibility with the widest - variety of IMAP servers. -

OfflineIMAP is SAFE; it uses an - algorithm designed to prevent mail loss at all costs. Because - of the design of this algorithm, even programming errors - should not result in loss of mail. I am so confident in the - algorithm that I use my own personal and work accounts for - testing of OfflineIMAP pre-release, development, and beta - releases. Of course, legally speaking, OfflineIMAP comes - with no warranty, so I am not responsible if this turns out - to be wrong. -

Method of Operation

OfflineIMAP traditionally - operates by maintaining a hierarchy of - mail folders in Maildir format locally. Your own mail - reader will read mail from this tree, and need never know - that the mail comes from IMAP. OfflineIMAP will detect - changes to the mail folders on your IMAP server and your own - computer and bi-directionally synchronize them, copying, - marking, and deleting messages as necessary. -

With OfflineIMAP 4.0, a powerful new ability has been - introduced -- the program can now synchronize two IMAP - servers with each other, with no need to have a Maildir - layer in-between. Many people use this if they use a mail - reader on their local machine that does not support - Maildirs. People may install an IMAP server on their local - machine, and point both OfflineIMAP and their mail reader - of choice at it. This is often preferable to the mail - reader's own IMAP support since OfflineIMAP supports many - features (offline reading, for one) that most IMAP-aware - readers don't. However, this feature is not as time-tested - as traditional syncing, so my advice is to stick with normal - methods of operation for the time being. -

Quick Start

If you have already installed OfflineIMAP system-wide, - or your system administrator has done that for you, your task - for setting up OfflineIMAP for the first time is quite - simple. You just need to set up your configuration file, make - your folder directory, and run it! -

You can quickly set up your configuration file. The distribution - includes a file offlineimap.conf.minimal - (Debian users - may find this at - /usr/share/doc/offlineimap/examples/offlineimap.conf.minimal) that is a basic example of setting of OfflineIMAP. You can - simply copy this file into your home directory and name it - .offlineimaprc (note the leading period). A - command such as cp offlineimap.conf.minimal ~/.offlineimaprc will do it. Or, if you prefer, you can just copy this text to - ~/.offlineimaprc: -

[general]
-accounts = Test
-
-[Account Test]
-localrepository = Local
-remoterepository = Remote
-
-[Repository Local]
-type = Maildir
-localfolders = ~/Test
-
-[Repository Remote]
-type = IMAP
-remotehost = examplehost
-remoteuser = jgoerzen

Now, edit the ~/.offlineimaprc file with - your favorite editor. All you have to do is specify a directory - for your folders to be in (on the localfolders - line), the host name of your IMAP server (on the - remotehost line), and your login name on - the remote (on the remoteuser line). That's - it!

To run OfflineIMAP, you just have to say - offlineimap -- it will fire up, ask you for - a login password if necessary, synchronize your folders, and exit. - See? You can just throw away the rest of this finely-crafted, - perfectly-honed manual! Of course, if you want to see how you can - make OfflineIMAP FIVE TIMES FASTER FOR JUST $19.95 (err, well, - $0), you have to read on! -

Installation

If you are reading this document via the "man" command, it is - likely - that you have no installation tasks to perform; your system - administrator has already installed it. If you need to install it - yourself, you have three options: a system-wide installation with - Debian, system-wide installation with other systems, and a single-user - installation. You can download the latest version of OfflineIMAP from - the OfflineIMAP - website. -

Prerequisites

In order to use OfflineIMAP, you need to have these conditions - satisfied: -

  • Your mail server must support IMAP. Most Internet Service - Providers - and corporate networks do, and most operating systems - have an IMAP - implementation readily available. -

  • You must have Python version 2.2.1 or above installed. - If you are - running on Debian GNU/Linux, this requirement will automatically be - taken care of for you. If you do not have Python already, check with - your system administrator or operating system vendor; or, download it from - the Python website. - If you intend to use the Tk interface, you must have Tkinter - (python-tk) installed. If you intend to use the SSL interface, your - Python must have been built with SSL support. -

  • Have a mail reader that supports the Maildir mailbox - format. Most modern mail readers have this support - built-in, so you can choose from a wide variety of mail - servers. This format is also known as the "qmail" - format, so any mail reader compatible with it will work - with OfflineIMAP. If you do not have a mail reader - that supports Maildir, you can often install a local - IMAP server and point both OfflineIMAP and your mail - reader at it. -

System-Wide Installation, Debian

If you are tracking Debian unstable, you may install - OfflineIMAP by simply running the following command as root: -

apt-get install offlineimap -

If you are not tracking Debian unstable, download the Debian .deb - package from the OfflineIMAP website - and then run dpkg -i to install the downloaded - package. Then, skip to Configuration below. You will type offlineimap to - invoke the program. -

System-Wide Installation, Other

Download the tar.gz version of the package from the - website. - Then run - these commands, making sure that you are the "root" user first: -

tar -zxvf offlineimap_x.y.z.tar.gz
-cd offlineimap-x.y.z
-python2.2 setup.py install

On some systems, you will need to use - python instead of python2.2. - Next, proceed to Configuration below. You will type offlineimap to - invoke the program. -

Single-Account Installation

Download the tar.gz version of the package from the - website. - Then run these commands: -

tar -zxvf offlineimap_x.y.z.tar.gz
-cd offlineimap-x.y.z

When you want to run OfflineIMAP, you will issue the - cd command as above and then type - ./offlineimap.py; there is no installation - step necessary. -

Configuration

OfflineIMAP is regulated by a configuration file that is normally - stored in ~/.offlineimaprc. OfflineIMAP - ships with a file named offlineimap.conf - that you should copy to that location and then edit. This file is - vital to proper operation of the system; it sets everything you need - to run OfflineIMAP. Full documentation for the configuration file - is included within the sample file. -

OfflineIMAP also ships a file named - offlineimap.conf.minimal that you can also try. - It's useful if you want to get started with - the most basic feature set, and you can read about other features - later with offlineimap.conf. -

Options

Most configuration is done via the configuration file. Nevertheless, - there are a few command-line options that you may set for - OfflineIMAP. -

-1

Disable most multithreading operations and use - solely a single-connection - sync. This effectively sets the - maxsyncaccounts - and all maxconnections configuration file - variables to 1. -

-P profiledir

Sets OfflineIMAP into profile mode. The program - will create profiledir - (it must not already exist). As it runs, Python profiling - information - about each thread is logged into profiledir. Please note: This option - is present for debugging and optimization only, and should NOT be used - unless you have a specific reason to do so. It will significantly - slow program performance, may reduce reliability, and can generate - huge amounts of data. You must use the -1 option when - you use -P. -

-a accountlist

Overrides the accounts option - in the general section of the configuration - file. You might use this to exclude certain accounts, or to sync - some accounts that you normally prefer not to. Separate the - accounts by commas, and use no embedded spaces. -

-c configfile

Specifies a configuration file to use in lieu of - the default, ~/.offlineimaprc. -

-d 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 suggest that you use this with - -1 to make the results more sensible.

-d requires one or more debugtypes, - separated by commas. These define what exactly will be - debugged, and include three options: imap, - maildir, and thread. - 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 anyone else. The - maildir option will enable debugging for - certain Maildir operations. And thread - will debug the threading model. -

-l - filename

Enables logging to filename. This will log everything - that goes to the screen to the specified file. - Additionally, if any debugging is specified with -d, - then debug messages will not go to the screen, but - instead to the logfile only.

-o

Run only once, ignoring all - autorefresh settings in the configuration - file.

-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 pre-defined options are listed in - the User Interfaces section.

User Interfaces

OfflineIMAP has a pluggable user interface system that lets you choose how the - program communicates information to you. There are two graphical - interfaces, two terminal interfaces, and two noninteractive interfaces - suitable for scripting or logging purposes. The - ui option in the configuration file specifies - user interface preferences. The -u command-line - option can override the configuration file setting. The available - values for the configuration file or command-line are described - in this section.

Tk.Blinkenlights

Tk.Blinkenlights is an interface designed to be sleek, fun to watch, and - informative of the overall picture of what OfflineIMAP - is doing. I consider it to be the best general-purpose interface in - OfflineIMAP. -

Tk.Blinkenlights contains, by default, a small window with a row of - LEDs, a small log, and a row of command buttons. - The total size of the window is - very small, so it uses little desktop space, yet it is quite - functional. The optional, toggleable, log shows more - detail about what is happening and is color-coded to match the color - of the lights. -

Tk.Blinkenlights is the only user interface that has configurable - parameters; see the example offlineimap.conf - for more details. -

Each light in the Blinkenlights interface represents a thread - of execution -- that is, a particular task that OfflineIMAP - is performing right now. The colors indicate what task - the particular thread is performing, and are as follows: -

Black

indicates that this light's thread has terminated; it will light up - again later when new threads start up. So, black indicates no - activity. -

Red (Meaning 1)

is the color of the main program's thread, which basically does - nothing but monitor the others. It might remind you of HAL 9000 in - [2001]. -

Gray

indicates that the thread is establishing a new connection to the IMAP - server. -

Purple

is the color of an account synchronization thread that is monitoring - the progress of the folders in that account (not generating any I/O). -

Cyan

indicates that the thread is syncing a folder. -

Green

means that a folder's message list is being loaded. -

Blue

is the color of a message synchronization controller thread. -

Orange

indicates that an actual message is being copied. - (We use fuchsia for fake messages.) -

Red (meaning 2)

indicates that a message is being deleted. -

Yellow / bright orange

indicates that message flags are being added. -

Pink / bright red

indicates that message flags are being removed. -

Red / Black Flashing

corresponds to the countdown timer that runs between - synchronizations. -

The name of this interfaces derives from a bit of computer - history. Eric Raymond's [Jargon File] defines - blinkenlights, in part, as: -

Front-panel diagnostic - lights on a computer, esp. a dinosaur. Now that dinosaurs are rare, - this term usually refers to status lights on a modem, network hub, or - the like. -

This term derives from the last word of the famous blackletter-Gothic - sign in mangled pseudo-German that once graced about half the computer - rooms in the English-speaking world. One version ran in its entirety as - follows: -

ACHTUNG! ALLES LOOKENSPEEPERS! -

Das computermachine ist nicht fuer gefingerpoken und mittengrabben. - Ist easy schnappen der springenwerk, blowenfusen und poppencorken - mit spitzensparken. Ist nicht fuer gewerken bei das dumpkopfen. - Das rubbernecken sichtseeren keepen das cotten-pickenen hans in das - pockets muss; relaxen und watchen das blinkenlichten. -

Curses.Blinkenlights

Curses.Blinkenlights is an interface very similar to Tk.Blinkenlights, - but is designed to be run in a console window (an xterm, Linux virtual - terminal, etc.) Since it doesn't have access to graphics, it isn't - quite as pretty, but it still gets the job done. -

Please see the Tk.Blinkenlights section above for more - information about the colors used in this interface. -

Tk.VerboseUI

Tk.VerboseUI (formerly known as Tk.TkUI) is a graphical interface - that presents a variable-sized window. In the window, each - currently-executing thread has a section where its name and current - status are displayed. This interface is best suited to people running - on slower connections, as you get a lot of detail, but for fast - connections, the detail may go by too quickly to be useful. People - with fast connections may wish to use Tk.Blinkenlights instead. -

TTY.TTYUI

TTY.TTYUI interface is for people running in basic, non-color terminals. It - prints out basic status messages and is generally friendly to use on a console - or xterm. -

Noninteractive.Basic

Noninteractive.Basic is designed for situations in which OfflineIMAP - will be run non-attended and the status of its execution will be - logged. You might use it, for instance, to have the system run - automatically and - e-mail you the results of the synchronization. This user interface - is not capable of reading a password from the keyboard; account - passwords must be specified using one of the configuration file options. -

Noninteractive.Quiet

Noninteractive.Quiet is designed for non-attended running in situations - where normal status messages are not desired. It will output nothing - except errors and serious warnings. Like Noninteractive.Basic, - this user interface - is not capable of reading a password from the keyboard; account - passwords must be specified using one of the configuration file options. -

Examples

Here are some example configurations for various situations. - Please e-mail any other examples you have that may be useful to - me. -

Multiple Accounts with Mutt

This example shows you how to set up OfflineIMAP to - synchronize multiple accounts with the mutt mail reader. -

Start by creating a directory to hold your folders by running - mkdir ~/Mail. Then, in your - ~/.offlineimaprc, specify: -

accounts = Personal, Work

Make sure that you have both an - [Account Personal] - and an [Account Work] section. The - local repository for each account must have different - localfolder path names. - Also, make sure - to enable [mbnames]. -

In each local repository section, write something like this: -

localfolders = ~/Mail/Personal

Finally, add these lines to your ~/.muttrc: -

source ~/path-to-mbnames-muttrc-mailboxes
-folder-hook Personal set from="youremail@personal.com"
-folder-hook Work set from="youremail@work.com"
-set mbox_type=Maildir
-set folder=$HOME/Mail
-spoolfile=+Personal/INBOX

That's it! -

UW-IMAPD and References

Some users with a UW-IMAPD server need to use OfflineIMAP's - "reference" feature to get at their mailboxes, specifying a reference - of "~/Mail" or "#mh/" depending on the configuration. The below - configuration from (originally from docwhat@gerf.org) - shows using a reference of Mail, a nametrans - that strips - the leading Mail/ off incoming folder names, and a - folderfilter that - limits the folders synced to just three. -

[Account Gerf]
-localrepository = GerfLocal
-remoterepository = GerfRemote
-
-[Repository GerfLocal]
-type = Maildir
-localfolders = ~/Mail
-
-[Repository GerfRemote]
-type = IMAP
-remotehost = gerf.org
-ssl = yes
-remoteuser = docwhat
-reference = Mail
-# Trims off the preceeding Mail on all the folder names.
-nametrans = lambda foldername: \
-            re.sub('^Mail/', '', foldername)
-# Yeah, you have to mention the Mail dir, even though it
-# would seem intuitive that reference would trim it.
-folderfilter = lambda foldername: foldername in [
-      'Mail/INBOX',
-      'Mail/list/zaurus-general',
-      'Mail/list/zaurus-dev',
-      ]
-maxconnections = 1
-holdconnectionopen = no

pythonfile Configuration File Option

You can have OfflineIMAP - load up a Python file before evaluating the - configuration file options that are Python expressions. This example - is based on one supplied by Tommi Virtanen for this feature. -

In ~/.offlineimap.rc, he adds these options: -

[general]
-pythonfile=~/.offlineimap.py
-[Repository foo]
-foldersort=mycmp

Then, the ~/.offlineimap.py file will - contain: -

prioritized = ['INBOX', 'personal', 'announce', 'list']
-
-def mycmp(x, y):
-   for prefix in prioritized:
-       xsw = x.startswith(prefix)
-       ysw = y.startswith(prefix)
-       if xsw and ysw:
-          return cmp(x, y)
-       elif xsw:
-          return -1
-       elif ysw:
-          return +1
-   return cmp(x, y)
-
-def test_mycmp():
-   import os, os.path
-   folders=os.listdir(os.path.expanduser('~/data/mail/tv@hq.yok.utu.fi'))
-   folders.sort(mycmp)
-   print folders

This code snippet illustrates how the foldersort - option can be customized with a Python function from the - pythonfile to always synchronize certain - folders first. -

Errors

If you get one of some frequently-encountered or confusing errors, - please check this section. -

UID validity problem for folder

IMAP servers use a unique ID (UID) to refer to a specific message. - This number is guaranteed to be unique to a particular message - forever. - No other message in the same folder will ever get the same - UID. UIDs are an integral part of OfflineIMAP's synchronization - scheme; they are used to match up messages on your computer to - messages on the server. -

Sometimes, the UIDs on the server might get reset. Usually this will - happen if you delete and then recreate a folder. When you create a - folder, the server will often start the UID back from 1. But - OfflineIMAP might still have the UIDs from the previous folder by the - same name stored. OfflineIMAP will detect this condition and skip the - folder. This is GOOD, because it prevents data loss. -

You can fix it by removing your local folder and cache data. For - instance, if your folders are under ~/Folders - and the folder with the problem is INBOX, you'd type this: -

rm -r ~/Folders/INBOX
-rm -r ~/.offlineimap/Account-AccountName
-rm -r ~/.offlineimap/Repository-RepositoryName

(Of course, replace AccountName and RepositoryName - with the names as specified - in ~/.offlineimaprc). -

Next time you run OfflineIMAP, it will re-download - the folder with the - new UIDs. Note that the procedure specified above will lose any local - changes made to the folder. -

Some IMAP servers are broken and do not support UIDs properly. If you - continue to get this error for all your folders even after performing - the above procedure, it is likely that your IMAP server falls into - this category. OfflineIMAP is incompatible with such servers. - Using OfflineIMAP with them will not destroy any mail, but at the same time, - it will not actually synchronize it either. (OfflineIMAP will detect - this condition and abort prior to synchronization.) -

This question comes up frequently on the - OfflineIMAP - mailing list. You can find a - detailed - discussion of the problem there. -

Conforming To

  • Internet Message Access Protocol version 4rev1 (IMAP 4rev1) as - specified in RFC2060 and RFC3501

  • CRAM-MD5 as specified in RFC2195

  • Maildir as specified in - the Maildir manpage and - the qmail website.

  • Standard Python 2.2.1 as implemented on POSIX-compliant systems.

Notes

Deleting Local Folders

OfflineIMAP does a two-way synchronization. That is, if you - make a change to the mail on the server, it will be propagated to your - local copy, and vise-versa. Some people might think that it would be - wise to just delete all their local mail folders periodically. If you - do this with OfflineIMAP, remember to also remove your local status - cache (~/.offlineimap by default). Otherwise, OfflineIMAP will take - this as an intentional deletion of many messages and will interpret - your action as requesting them to be deleted from the server as well. - (If you don't understand this, don't worry; you probably won't - encounter this situation) -

Multiple Instances

OfflineIMAP is not designed to have several instances (for instance, a cron job and an interactive invocation) run over the same - mailbox simultaneously. It will perform a check on startup and - abort if another OfflineIMAP is already running. If you need - to schedule synchronizations, please use the - autorefresh settings rather than cron. - Alternatively, you can set a separate metadata - directory for each instance. -

Copying Messages Between Folders

Normally, when you copy a message between folders or add a new message - to a folder locally, OfflineIMAP - will just do the right thing. However, sometimes this can be tricky - -- if your IMAP server does not provide the SEARCH command, or does - not return something useful, OfflineIMAP - cannot determine the new UID of the message. So, in these rare - instances, OfflineIMAP will upload the message to the IMAP server and - delete it from your local folder. Then, on your next sync, the - message will be re-downloaded with the proper UID. - OfflineIMAP makes sure that the message was properly uploaded before deleting it, - so there should be no risk of data loss. -

Mailing List

There is an OfflineIMAP mailing list available. - To subscribe, send the text "Subscribe" in the subject of a mail to - offlineimap-request@complete.org. To post, send the message to - offlineimap@complete.org. Archives are available at - http://lists.complete.org/offlineimap@complete.org/. -

Bugs

Reports of bugs should be reported online at the - OfflineIMAP homepage. - Debian users are encouraged to instead use the - Debian - bug-tracking system. -

Upgrading to 4.0

If you are upgrading from a version of OfflineIMAP prior to - 3.99.12, you will find that you will get errors when - OfflineIMAP starts up (relating to ConfigParser or - AccountHashGenerator) and the - configuration file. This is because the config file format - had to change to accommodate new features in 4.0. Fortunately, - it's not difficult to adjust it to suit. -

First thing you need to do is stop any running OfflineIMAP - instance, making sure first that it's synced all your mail. - Then, modify your - ~/.offlineimaprc file. You'll need to - split up each account section (make sure that it now starts - with "Account ") into two Repository sections (one for the - local side and another for the remote side.) See the files - offlineimap.conf.minimal and - offlineimap.conf in the distribution if - you need more assistance. -

OfflineIMAP's status directory area has also changed. - Therefore, you should delete everything in ~/.offlineimap as - well as your local mail folders. -

When you start up OfflineIMAP 4.0, it will re-download all - your mail from the server and then you can continue using it - like normal. -

Copyright

OfflineIMAP, and this manual, are Copyright © 2002 - 2006 John Goerzen.

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

imaplib.py comes from the Python dev tree and is licensed under - the GPL-compatible PSF license as stated in the file - COPYRIGHT in the OfflineIMAP - distribution. -

Author

OfflineIMAP, its libraries, documentation, and all included files, except where - noted, was written by John Goerzen <jgoerzen@complete.org> and - copyright is held as stated in the COPYRIGHT section. -

OfflineIMAP may be downloaded, and information found, from its - homepage. -

See Also

mutt(1), - python(1) -

History

Detailed history may be found in the file ChangeLog in the - OfflineIMAP distribution. Feature and bug histories may be - found in the file debian/changelog which, despite its name, is - not really Debian-specific. This section provides a large - overview. -

Development on OfflineIMAP began on June 18, 2002. Version - 1.0.0 was released three days later on June 21, 2002. Point - releases followed, including speed optimizations and some - compatibility fixes. -

Version 2.0.0 was released on July 3, 2002, and - represented the first time the synchronization became - multithreaded and, to the best of my knowledge, the first - multithreaded IMAP syncrhonizing application in existance. - The last 2.0.x release, 2.0.8, was made on July 9. -

Version 3.0.0 was released on July 11, 2002, and introduced - modular user interfaces and the first GUI interface for - OfflineIMAP. This manual also was introduced with 3.0.0, - along with many command-line options. Version 3.1.0 was - released on July 21, adding the Noninteractive user - interfaces, profiling support, and several bugfixes. 3.2.0 - was released on July 24, adding support for the Blinkenlights - GUI interface. OfflineIMAP entered maintenance mode for - awhile, as it had reached a feature-complete milestone in my - mind. -

The 3.99.x branch began in on October 7, 2002, to begin work - for 4.0. The Curses.Blinkenlights interface was added in - 3.99.6, and many architectural changes were made. -

4.0.0 was released on July 18, 2003, including the ability to - synchronize directly between two IMAP servers, the first - re-architecting of the configuration file to refine the - notion of an account, and the new Curses interface. -

\ No newline at end of file diff --git a/manual.pdf b/manual.pdf deleted file mode 100644 index 6af564cf74d2da8a0b5f552d89f8fd68be18db62..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 37217 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 diff --git a/manual.txt b/manual.txt deleted file mode 100644 index a72e8cd..0000000 --- a/manual.txt +++ /dev/null @@ -1,691 +0,0 @@ -OFFLINEIMAP(1) OfflineIMAP Manual OFFLINEIMAP(1) - - - -NAME - OfflineIMAP - Powerful IMAP/Maildir synchronization and reader support - -SYNOPSIS - offlineimap [ -1 ] [ -P profiledir ] [ -a accountlist ] [ -c configfile - ] [ -d debugtype[,...] ] [ -l filename ] [ -o ] [ -u interface ] - - - offlineimap -h | --help - - -DESCRIPTION - OfflineIMAP is a tool to simplify your e-mail reading. With - OfflineIMAP, you can read the same mailbox from multiple computers. - You get a current copy of your messages on each computer, and changes - you make one place will be visible on all other systems. For instance, - you can delete a message on your home computer, and it will appear - deleted on your work computer as well. OfflineIMAP is also useful if - you want to use a mail reader that does not have IMAP support, has poor - IMAP support, or does not provide disconnected operation. - - OfflineIMAP is FAST; it synchronizes my two accounts with over 50 fold- - ers in 3 seconds. Other similar tools might take over a minute, and - achieve a less-reliable result. Some mail readers can take over 10 - minutes to do the same thing, and some don't even support it at all. - Unlike other mail tools, OfflineIMAP features a multi-threaded synchro- - nization algorithm that can dramatically speed up performance in many - situations by synchronizing several different things simultaneously. - - OfflineIMAP is FLEXIBLE; you can customize which folders are synced via - regular expressions, lists, or Python expressions; a versatile and com- - prehensive configuration file is used to control behavior; two user - interfaces are built-in; fine-tuning of synchronization performance is - possible; internal or external automation is supported; SSL and PREAUTH - tunnels are both supported; offline (or "unplugged") reading is sup- - ported; and esoteric IMAP features are supported to ensure compatibil- - ity with the widest variety of IMAP servers. - - OfflineIMAP is SAFE; it uses an algorithm designed to prevent mail loss - at all costs. Because of the design of this algorithm, even program- - ming errors should not result in loss of mail. I am so confident in - the algorithm that I use my own personal and work accounts for testing - of OfflineIMAP pre-release, development, and beta releases. Of course, - legally speaking, OfflineIMAP comes with no warranty, so I am not - responsible if this turns out to be wrong. - - METHOD OF OPERATION - OfflineIMAP traditionally operates by maintaining a hierarchy of mail - folders in Maildir format locally. Your own mail reader will read mail - from this tree, and need never know that the mail comes from IMAP. - OfflineIMAP will detect changes to the mail folders on your IMAP server - and your own computer and bi-directionally synchronize them, copying, - marking, and deleting messages as necessary. - - With OfflineIMAP 4.0, a powerful new ability has been introduced -- the - program can now synchronize two IMAP servers with each other, with no - need to have a Maildir layer in-between. Many people use this if they - use a mail reader on their local machine that does not support - Maildirs. People may install an IMAP server on their local machine, - and point both OfflineIMAP and their mail reader of choice at it. This - is often preferable to the mail reader's own IMAP support since - OfflineIMAP supports many features (offline reading, for one) that most - IMAP-aware readers don't. However, this feature is not as time-tested - as traditional syncing, so my advice is to stick with normal methods of - operation for the time being. - -QUICK START - If you have already installed OfflineIMAP system-wide, or your system - administrator has done that for you, your task for setting up - OfflineIMAP for the first time is quite simple. You just need to set - up your configuration file, make your folder directory, and run it! - - You can quickly set up your configuration file. The distribution - includes a file offlineimap.conf.minimal (Debian users may find this at - /usr/share/doc/offlineimap/examples/offlineimap.conf.minimal) that is a - basic example of setting of OfflineIMAP. You can simply copy this file - into your home directory and name it .offlineimaprc (note the leading - period). A command such as cp offlineimap.conf.minimal - ~/.offlineimaprc will do it. Or, if you prefer, you can just copy this - text to ~/.offlineimaprc: - - [general] - accounts = Test - - [Account Test] - localrepository = Local - remoterepository = Remote - - [Repository Local] - type = Maildir - localfolders = ~/Test - - [Repository Remote] - type = IMAP - remotehost = examplehost - remoteuser = jgoerzen - - Now, edit the ~/.offlineimaprc file with your favorite editor. All you - have to do is specify a directory for your folders to be in (on the - localfolders line), the host name of your IMAP server (on the remote- - host line), and your login name on the remote (on the remoteuser line). - That's it! - - To run OfflineIMAP, you just have to say offlineimap -- it will fire - up, ask you for a login password if necessary, synchronize your fold- - ers, and exit. See? You can just throw away the rest of this finely- - crafted, perfectly-honed manual! Of course, if you want to see how you - can make OfflineIMAP FIVE TIMES FASTER FOR JUST $19.95 (err, well, $0), - you have to read on! - -INSTALLATION - If you are reading this document via the "man" command, it is likely - that you have no installation tasks to perform; your system administra- - tor has already installed it. If you need to install it yourself, you - have three options: a system-wide installation with Debian, system-wide - installation with other systems, and a single-user installation. You - can download the latest version of OfflineIMAP from the OfflineIMAP - website . - - PREREQUISITES - In order to use OfflineIMAP, you need to have these conditions satis- - fied: - - o Your mail server must support IMAP. Most Internet Service Providers - and corporate networks do, and most operating systems have an IMAP - implementation readily available. - - o You must have Python version 2.2.1 or above installed. If you are - running on Debian GNU/Linux, this requirement will automatically be - taken care of for you. If you do not have Python already, check with - your system administrator or operating system vendor; or, download it - from the Python website . If you intend - to use the Tk interface, you must have Tkinter (python-tk) installed. - If you intend to use the SSL interface, your Python must have been - built with SSL support. - - o Have a mail reader that supports the Maildir mailbox format. Most - modern mail readers have this support built-in, so you can choose - from a wide variety of mail servers. This format is also known as - the "qmail" format, so any mail reader compatible with it will work - with OfflineIMAP. If you do not have a mail reader that supports - Maildir, you can often install a local IMAP server and point both - OfflineIMAP and your mail reader at it. - - SYSTEM-WIDE INSTALLATION, DEBIAN - If you are tracking Debian unstable, you may install OfflineIMAP by - simply running the following command as root: - - apt-get install offlineimap - - If you are not tracking Debian unstable, download the Debian .deb pack- - age from the OfflineIMAP website and then run dpkg -i to install the downloaded - package. Then, skip to [XRef to CONFIGURATION] below. You will type - offlineimap to invoke the program. - - SYSTEM-WIDE INSTALLATION, OTHER - Download the tar.gz version of the package from the website - . Then run these com- - mands, making sure that you are the "root" user first: - - tar -zxvf offlineimap_x.y.z.tar.gz - cd offlineimap-x.y.z - python2.2 setup.py install - - On some systems, you will need to use python instead of python2.2. - Next, proceed to [XRef to CONFIGURATION] below. You will type - offlineimap to invoke the program. - - SINGLE-ACCOUNT INSTALLATION - Download the tar.gz version of the package from the website - . Then run these com- - mands: - - tar -zxvf offlineimap_x.y.z.tar.gz - cd offlineimap-x.y.z - - When you want to run OfflineIMAP, you will issue the cd command as - above and then type ./offlineimap.py; there is no installation step - necessary. - -CONFIGURATION - OfflineIMAP is regulated by a configuration file that is normally - stored in ~/.offlineimaprc. OfflineIMAP ships with a file named - offlineimap.conf that you should copy to that location and then edit. - This file is vital to proper operation of the system; it sets every- - thing you need to run OfflineIMAP. Full documentation for the configu- - ration file is included within the sample file. - - OfflineIMAP also ships a file named offlineimap.conf.minimal that you - can also try. It's useful if you want to get started with the most - basic feature set, and you can read about other features later with - offlineimap.conf. - -OPTIONS - Most configuration is done via the configuration file. Nevertheless, - there are a few command-line options that you may set for OfflineIMAP. - - -1 Disable most multithreading operations and use solely a single- - connection sync. This effectively sets the maxsyncaccounts and - all maxconnections configuration file variables to 1. - - -P profiledir - Sets OfflineIMAP into profile mode. The program will create - profiledir (it must not already exist). As it runs, Python pro- - filing information about each thread is logged into profiledir. - Please note: This option is present for debugging and optimiza- - tion only, and should NOT be used unless you have a specific - reason to do so. It will significantly slow program perfor- - mance, may reduce reliability, and can generate huge amounts of - data. You must use the -1 option when you use -P. - - -a accountlist - Overrides the accounts option in the general section of the con- - figuration file. You might use this to exclude certain - accounts, or to sync some accounts that you normally prefer not - to. Separate the accounts by commas, and use no embedded - spaces. - - -c configfile - Specifies a configuration file to use in lieu of the default, - ~/.offlineimaprc. - - -d 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 suggest that you use this with -1 to make - the results more sensible. - - -d requires one or more debugtypes, separated by commas. These - define what exactly will be debugged, and include three options: - imap, maildir, and thread. 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 debug- - ging output before sending it to anyone else. The maildir - option will enable debugging for certain Maildir operations. - And thread will debug the threading model. - - -l filename - Enables logging to filename. This will log everything that goes - to the screen to the specified file. Additionally, if any - debugging is specified with -d, then debug messages will not go - to the screen, but instead to the logfile only. - - -o Run only once, ignoring all autorefresh settings in the configu- - ration file. - - -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 - pre-defined options are listed in the User Interfaces section. - -USER INTERFACES - OfflineIMAP has a pluggable user interface system that lets you choose - how the program communicates information to you. There are two graphi- - cal interfaces, two terminal interfaces, and two noninteractive inter- - faces suitable for scripting or logging purposes. The ui option in the - configuration file specifies user interface preferences. The -u com- - mand-line option can override the configuration file setting. The - available values for the configuration file or command-line are - described in this section. - - TK.BLINKENLIGHTS - Tk.Blinkenlights is an interface designed to be sleek, fun to watch, - and informative of the overall picture of what OfflineIMAP is doing. I - consider it to be the best general-purpose interface in OfflineIMAP. - - Tk.Blinkenlights contains, by default, a small window with a row of - LEDs, a small log, and a row of command buttons. The total size of the - window is very small, so it uses little desktop space, yet it is quite - functional. The optional, toggleable, log shows more detail about what - is happening and is color-coded to match the color of the lights. - - Tk.Blinkenlights is the only user interface that has configurable - parameters; see the example offlineimap.conf for more details. - - Each light in the Blinkenlights interface represents a thread of execu- - tion -- that is, a particular task that OfflineIMAP is performing right - now. The colors indicate what task the particular thread is perform- - ing, and are as follows: - - Black indicates that this light's thread has terminated; it will light - up again later when new threads start up. So, black indicates - no activity. - - Red (Meaning 1) - is the color of the main program's thread, which basically does - nothing but monitor the others. It might remind you of HAL 9000 - in 2001. - - Gray indicates that the thread is establishing a new connection to - the IMAP server. - - Purple is the color of an account synchronization thread that is moni- - toring the progress of the folders in that account (not generat- - ing any I/O). - - Cyan indicates that the thread is syncing a folder. - - Green means that a folder's message list is being loaded. - - Blue is the color of a message synchronization controller thread. - - Orange indicates that an actual message is being copied. (We use fuch- - sia for fake messages.) - - Red (meaning 2) - indicates that a message is being deleted. - - Yellow / bright orange - indicates that message flags are being added. - - Pink / bright red - indicates that message flags are being removed. - - Red / Black Flashing - corresponds to the countdown timer that runs between synchro- - nizations. - - The name of this interfaces derives from a bit of computer history. - Eric Raymond's Jargon File defines blinkenlights, in part, as: - - - Front-panel diagnostic lights on a computer, esp. a dinosaur. - Now that dinosaurs are rare, this term usually refers to status - lights on a modem, network hub, or the like. - - This term derives from the last word of the famous blackletter- - Gothic sign in mangled pseudo-German that once graced about half - the computer rooms in the English-speaking world. One version - ran in its entirety as follows: - - ACHTUNG! ALLES LOOKENSPEEPERS! - - Das computermachine ist nicht fuer gefingerpoken und mitten- - grabben. Ist easy schnappen der springenwerk, blowenfusen und - poppencorken mit spitzensparken. Ist nicht fuer gewerken bei - das dumpkopfen. Das rubbernecken sichtseeren keepen das cotten- - pickenen hans in das pockets muss; relaxen und watchen das - blinkenlichten. - - CURSES.BLINKENLIGHTS - Curses.Blinkenlights is an interface very similar to Tk.Blinkenlights, - but is designed to be run in a console window (an xterm, Linux virtual - terminal, etc.) Since it doesn't have access to graphics, it isn't - quite as pretty, but it still gets the job done. - - Please see the Tk.Blinkenlights section above for more information - about the colors used in this interface. - - TK.VERBOSEUI - Tk.VerboseUI (formerly known as Tk.TkUI) is a graphical interface that - presents a variable-sized window. In the window, each currently-exe- - cuting thread has a section where its name and current status are dis- - played. This interface is best suited to people running on slower con- - nections, as you get a lot of detail, but for fast connections, the - detail may go by too quickly to be useful. People with fast connec- - tions may wish to use Tk.Blinkenlights instead. - - TTY.TTYUI - TTY.TTYUI interface is for people running in basic, non-color termi- - nals. It prints out basic status messages and is generally friendly to - use on a console or xterm. - - NONINTERACTIVE.BASIC - Noninteractive.Basic is designed for situations in which OfflineIMAP - will be run non-attended and the status of its execution will be - logged. You might use it, for instance, to have the system run auto- - matically and e-mail you the results of the synchronization. This user - interface is not capable of reading a password from the keyboard; - account passwords must be specified using one of the configuration file - options. - - NONINTERACTIVE.QUIET - Noninteractive.Quiet is designed for non-attended running in situations - where normal status messages are not desired. It will output nothing - except errors and serious warnings. Like Noninteractive.Basic, this - user interface is not capable of reading a password from the keyboard; - account passwords must be specified using one of the configuration file - options. - -EXAMPLES - Here are some example configurations for various situations. Please e- - mail any other examples you have that may be useful to me. - - MULTIPLE ACCOUNTS WITH MUTT - This example shows you how to set up OfflineIMAP to synchronize multi- - ple accounts with the mutt mail reader. - - Start by creating a directory to hold your folders by running mkdir - ~/Mail. Then, in your ~/.offlineimaprc, specify: - - accounts = Personal, Work - - Make sure that you have both an [Account Personal] and an [Account - Work] section. The local repository for each account must have differ- - ent localfolder path names. Also, make sure to enable [mbnames]. - - In each local repository section, write something like this: - - localfolders = ~/Mail/Personal - - Finally, add these lines to your ~/.muttrc: - - source ~/path-to-mbnames-muttrc-mailboxes - folder-hook Personal set from="youremail@personal.com" - folder-hook Work set from="youremail@work.com" - set mbox_type=Maildir - set folder=$HOME/Mail - spoolfile=+Personal/INBOX - - That's it! - - UW-IMAPD AND REFERENCES - Some users with a UW-IMAPD server need to use OfflineIMAP's "reference" - feature to get at their mailboxes, specifying a reference of "~/Mail" - or "#mh/" depending on the configuration. The below configuration from - (originally from docwhat@gerf.org) shows using a reference of Mail, a - nametrans that strips the leading Mail/ off incoming folder names, and - a folderfilter that limits the folders synced to just three. - - [Account Gerf] - localrepository = GerfLocal - remoterepository = GerfRemote - - [Repository GerfLocal] - type = Maildir - localfolders = ~/Mail - - [Repository GerfRemote] - type = IMAP - remotehost = gerf.org - ssl = yes - remoteuser = docwhat - reference = Mail - # Trims off the preceeding Mail on all the folder names. - nametrans = lambda foldername: \ - re.sub('^Mail/', '', foldername) - # Yeah, you have to mention the Mail dir, even though it - # would seem intuitive that reference would trim it. - folderfilter = lambda foldername: foldername in [ - 'Mail/INBOX', - 'Mail/list/zaurus-general', - 'Mail/list/zaurus-dev', - ] - maxconnections = 1 - holdconnectionopen = no - - PYTHONFILE CONFIGURATION FILE OPTION - You can have OfflineIMAP load up a Python file before evaluating the - configuration file options that are Python expressions. This example - is based on one supplied by Tommi Virtanen for this feature. - - In ~/.offlineimap.rc, he adds these options: - - [general] - pythonfile=~/.offlineimap.py - [Repository foo] - foldersort=mycmp - - Then, the ~/.offlineimap.py file will contain: - - prioritized = ['INBOX', 'personal', 'announce', 'list'] - - def mycmp(x, y): - for prefix in prioritized: - xsw = x.startswith(prefix) - ysw = y.startswith(prefix) - if xsw and ysw: - return cmp(x, y) - elif xsw: - return -1 - elif ysw: - return +1 - return cmp(x, y) - - def test_mycmp(): - import os, os.path - folders=os.listdir(os.path.expanduser('~/data/mail/tv@hq.yok.utu.fi')) - folders.sort(mycmp) - print folders - - This code snippet illustrates how the foldersort option can be cus- - tomized with a Python function from the pythonfile to always synchro- - nize certain folders first. - -ERRORS - If you get one of some frequently-encountered or confusing errors, - please check this section. - - UID VALIDITY PROBLEM FOR FOLDER - IMAP servers use a unique ID (UID) to refer to a specific message. - This number is guaranteed to be unique to a particular message forever. - No other message in the same folder will ever get the same UID. UIDs - are an integral part of OfflineIMAP's synchronization scheme; they are - used to match up messages on your computer to messages on the server. - - Sometimes, the UIDs on the server might get reset. Usually this will - happen if you delete and then recreate a folder. When you create a - folder, the server will often start the UID back from 1. But - OfflineIMAP might still have the UIDs from the previous folder by the - same name stored. OfflineIMAP will detect this condition and skip the - folder. This is GOOD, because it prevents data loss. - - You can fix it by removing your local folder and cache data. For - instance, if your folders are under ~/Folders and the folder with the - problem is INBOX, you'd type this: - - rm -r ~/Folders/INBOX - rm -r ~/.offlineimap/Account-AccountName - rm -r ~/.offlineimap/Repository-RepositoryName - - (Of course, replace AccountName and RepositoryName with the names as - specified in ~/.offlineimaprc). - - Next time you run OfflineIMAP, it will re-download the folder with the - new UIDs. Note that the procedure specified above will lose any local - changes made to the folder. - - Some IMAP servers are broken and do not support UIDs properly. If you - continue to get this error for all your folders even after performing - the above procedure, it is likely that your IMAP server falls into this - category. OfflineIMAP is incompatible with such servers. Using - OfflineIMAP with them will not destroy any mail, but at the same time, - it will not actually synchronize it either. (OfflineIMAP will detect - this condition and abort prior to synchronization.) - - This question comes up frequently on the OfflineIMAP mailing list - . You can - find a detailed discussion of the - problem there. - -CONFORMING TO - o Internet Message Access Protocol version 4rev1 (IMAP 4rev1) as speci- - fied in RFC2060 and RFC3501 - - o CRAM-MD5 as specified in RFC2195 - - o Maildir as specified in the Maildir manpage - and - the qmail website . - - o Standard Python 2.2.1 as implemented on POSIX-compliant systems. - -NOTES - DELETING LOCAL FOLDERS - OfflineIMAP does a two-way synchronization. That is, if you make a - change to the mail on the server, it will be propagated to your local - copy, and vise-versa. Some people might think that it would be wise to - just delete all their local mail folders periodically. If you do this - with OfflineIMAP, remember to also remove your local status cache - (~/.offlineimap by default). Otherwise, OfflineIMAP will take this as - an intentional deletion of many messages and will interpret your action - as requesting them to be deleted from the server as well. (If you - don't understand this, don't worry; you probably won't encounter this - situation) - - MULTIPLE INSTANCES - OfflineIMAP is not designed to have several instances (for instance, a - cron job and an interactive invocation) run over the same mailbox - simultaneously. It will perform a check on startup and abort if - another OfflineIMAP is already running. If you need to schedule syn- - chronizations, please use the autorefresh settings rather than cron. - Alternatively, you can set a separate metadata directory for each - instance. - - COPYING MESSAGES BETWEEN FOLDERS - Normally, when you copy a message between folders or add a new message - to a folder locally, OfflineIMAP will just do the right thing. How- - ever, sometimes this can be tricky -- if your IMAP server does not pro- - vide the SEARCH command, or does not return something useful, - OfflineIMAP cannot determine the new UID of the message. So, in these - rare instances, OfflineIMAP will upload the message to the IMAP server - and delete it from your local folder. Then, on your next sync, the - message will be re-downloaded with the proper UID. OfflineIMAP makes - sure that the message was properly uploaded before deleting it, so - there should be no risk of data loss. - - MAILING LIST - There is an OfflineIMAP mailing list available. To subscribe, send the - text "Subscribe" in the subject of a mail to offlineimap-request@com- - plete.org. To post, send the message to offlineimap@complete.org. - Archives are available at - . - - BUGS - Reports of bugs should be reported online at the OfflineIMAP homepage. - Debian users are encouraged to instead use the Debian bug-tracking sys- - tem. - -UPGRADING TO 4.0 - If you are upgrading from a version of OfflineIMAP prior to 3.99.12, - you will find that you will get errors when OfflineIMAP starts up - (relating to ConfigParser or AccountHashGenerator) and the configura- - tion file. This is because the config file format had to change to - accommodate new features in 4.0. Fortunately, it's not difficult to - adjust it to suit. - - First thing you need to do is stop any running OfflineIMAP instance, - making sure first that it's synced all your mail. Then, modify your - ~/.offlineimaprc file. You'll need to split up each account section - (make sure that it now starts with "Account ") into two Repository sec- - tions (one for the local side and another for the remote side.) See - the files offlineimap.conf.minimal and offlineimap.conf in the distri- - bution if you need more assistance. - - OfflineIMAP's status directory area has also changed. Therefore, you - should delete everything in ~/.offlineimap as well as your local mail - folders. - - When you start up OfflineIMAP 4.0, it will re-download all your mail - from the server and then you can continue using it like normal. - -COPYRIGHT - OfflineIMAP, and this manual, are Copyright (C) 2002 - 2006 John - Goerzen. - - 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 MER- - CHANTABILITY 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 - - imaplib.py comes from the Python dev tree and is licensed under the - GPL-compatible PSF license as stated in the file COPYRIGHT in the - OfflineIMAP distribution. - -AUTHOR - OfflineIMAP, its libraries, documentation, and all included files, - except where noted, was written by John Goerzen - and copyright is held as stated in the COPYRIGHT section. - - OfflineIMAP may be downloaded, and information found, from its homepage - . - -SEE ALSO - mutt(1), python(1) - -HISTORY - Detailed history may be found in the file ChangeLog in the OfflineIMAP - distribution. Feature and bug histories may be found in the file - debian/changelog which, despite its name, is not really Debian-spe- - cific. This section provides a large overview. - - Development on OfflineIMAP began on June 18, 2002. Version 1.0.0 was - released three days later on June 21, 2002. Point releases followed, - including speed optimizations and some compatibility fixes. - - Version 2.0.0 was released on July 3, 2002, and represented the first - time the synchronization became multithreaded and, to the best of my - knowledge, the first multithreaded IMAP syncrhonizing application in - existance. The last 2.0.x release, 2.0.8, was made on July 9. - - Version 3.0.0 was released on July 11, 2002, and introduced modular - user interfaces and the first GUI interface for OfflineIMAP. This man- - ual also was introduced with 3.0.0, along with many command-line - options. Version 3.1.0 was released on July 21, adding the Noninterac- - tive user interfaces, profiling support, and several bugfixes. 3.2.0 - was released on July 24, adding support for the Blinkenlights GUI - interface. OfflineIMAP entered maintenance mode for awhile, as it had - reached a feature-complete milestone in my mind. - - The 3.99.x branch began in on October 7, 2002, to begin work for 4.0. - The Curses.Blinkenlights interface was added in 3.99.6, and many archi- - tectural changes were made. - - 4.0.0 was released on July 18, 2003, including the ability to synchro- - nize directly between two IMAP servers, the first re-architecting of - the configuration file to refine the notion of an account, and the new - Curses interface. - - - -John Goerzen 01 December 2006 OFFLINEIMAP(1) diff --git a/offlineimap.1 b/offlineimap.1 deleted file mode 100644 index 076b5ef..0000000 --- a/offlineimap.1 +++ /dev/null @@ -1,803 +0,0 @@ -.\" This manpage has been automatically generated by docbook2man -.\" from a DocBook document. This tool can be found at: -.\" -.\" Please send any bug reports, improvements, comments, patches, -.\" etc. to Steve Cheng . -.TH "OFFLINEIMAP" "1" "01 December 2006" "John Goerzen" "OfflineIMAP Manual" - -.SH NAME -OfflineIMAP \- Powerful IMAP/Maildir synchronization and reader support -.SH SYNOPSIS - -\fBofflineimap\fR [ \fB-1\fR ] [ \fB-P \fIprofiledir\fB\fR ] [ \fB-a \fIaccountlist\fB\fR ] [ \fB-c \fIconfigfile\fB\fR ] [ \fB-d \fIdebugtype[,...]\fB\fR ] [ \fB-l \fIfilename\fB\fR ] [ \fB-o\fR ] [ \fB-u \fIinterface\fB\fR ] - - -\fBofflineimap\fR \fB-h\fR | \fB--help\fR - -.SH "DESCRIPTION" -.PP -\fBOfflineIMAP\fR is a tool to simplify your e-mail -reading. With \fBOfflineIMAP\fR, you can read the same mailbox -from multiple computers. You get a current copy of your -messages on each computer, and changes you make one place will be -visible on all other systems. For instance, you can delete a message -on your home computer, and it will appear deleted on your work -computer as well. \fBOfflineIMAP\fR is also useful if you want to -use a mail reader that does not have IMAP support, has poor IMAP -support, or does not provide disconnected operation. -.PP -\fBOfflineIMAP\fR is \fBFAST\fR; it synchronizes -my two accounts with over 50 folders in 3 seconds. Other -similar tools might take over a minute, and achieve a -less-reliable result. Some mail readers can take over 10 -minutes to do the same thing, and some don't even support it -at all. Unlike other mail tools, \fBOfflineIMAP\fR features a -multi-threaded synchronization algorithm that can dramatically -speed up performance in many situations by synchronizing -several different things simultaneously. -.PP -\fBOfflineIMAP\fR is \fBFLEXIBLE\fR; you can -customize which folders are synced via regular expressions, -lists, or Python expressions; a versatile and comprehensive -configuration file is used to control behavior; two user -interfaces are built-in; fine-tuning of synchronization -performance is possible; internal or external automation is -supported; SSL and PREAUTH tunnels are both supported; offline -(or "unplugged") reading is supported; and esoteric IMAP -features are supported to ensure compatibility with the widest -variety of IMAP servers. -.PP -\fBOfflineIMAP\fR is \fBSAFE\fR; it uses an -algorithm designed to prevent mail loss at all costs. Because -of the design of this algorithm, even programming errors -should not result in loss of mail. I am so confident in the -algorithm that I use my own personal and work accounts for -testing of \fBOfflineIMAP\fR pre-release, development, and beta -releases. Of course, legally speaking, \fBOfflineIMAP\fR comes -with no warranty, so I am not responsible if this turns out -to be wrong. -.SS "METHOD OF OPERATION" -.PP -\fBOfflineIMAP\fR traditionally -operates by maintaining a hierarchy of -mail folders in Maildir format locally. Your own mail -reader will read mail from this tree, and need never know -that the mail comes from IMAP. \fBOfflineIMAP\fR will detect -changes to the mail folders on your IMAP server and your own -computer and bi-directionally synchronize them, copying, -marking, and deleting messages as necessary. -.PP -With \fBOfflineIMAP\fR 4.0, a powerful new ability has been -introduced -- the program can now synchronize two IMAP -servers with each other, with no need to have a Maildir -layer in-between. Many people use this if they use a mail -reader on their local machine that does not support -Maildirs. People may install an IMAP server on their local -machine, and point both \fBOfflineIMAP\fR and their mail reader -of choice at it. This is often preferable to the mail -reader's own IMAP support since \fBOfflineIMAP\fR supports many -features (offline reading, for one) that most IMAP-aware -readers don't. However, this feature is not as time-tested -as traditional syncing, so my advice is to stick with normal -methods of operation for the time being. -.SH "QUICK START" -.PP -If you have already installed \fBOfflineIMAP\fR system-wide, -or your system administrator has done that for you, your task -for setting up \fBOfflineIMAP\fR for the first time is quite -simple. You just need to set up your configuration file, make -your folder directory, and run it! -.PP -You can quickly set up your configuration file. The distribution -includes a file \fIofflineimap.conf.minimal\fR -(Debian users -may find this at -\fI/usr/share/doc/offlineimap/examples/offlineimap.conf.minimal\fR) that is a basic example of setting of \fBOfflineIMAP\fR\&. You can -simply copy this file into your home directory and name it -\fI\&.offlineimaprc\fR (note the leading period). A -command such as \fBcp offlineimap.conf.minimal ~/.offlineimaprc\fR will do it. Or, if you prefer, you can just copy this text to -\fI~/.offlineimaprc\fR: - -.nf -[general] -accounts = Test - -[Account Test] -localrepository = Local -remoterepository = Remote - -[Repository Local] -type = Maildir -localfolders = ~/Test - -[Repository Remote] -type = IMAP -remotehost = examplehost -remoteuser = jgoerzen -.fi -.PP -Now, edit the \fI~/.offlineimaprc\fR file with -your favorite editor. All you have to do is specify a directory -for your folders to be in (on the \fIlocalfolders\fR -line), the host name of your IMAP server (on the -\fIremotehost\fR line), and your login name on -the remote (on the \fIremoteuser\fR line). That's -it! -.PP -To run \fBOfflineIMAP\fR, you just have to say -\fBofflineimap\fR -- it will fire up, ask you for -a login password if necessary, synchronize your folders, and exit. -See? You can just throw away the rest of this finely-crafted, -perfectly-honed manual! Of course, if you want to see how you can -make \fBOfflineIMAP\fR FIVE TIMES FASTER FOR JUST $19.95 (err, well, -$0), you have to read on! -.SH "INSTALLATION" -.PP -If you are reading this document via the "man" command, it is -likely -that you have no installation tasks to perform; your system -administrator has already installed it. If you need to install it -yourself, you have three options: a system-wide installation with -Debian, system-wide installation with other systems, and a single-user -installation. You can download the latest version of \fBOfflineIMAP\fR from -the \fBOfflineIMAP\fR -website \&. -.SS "PREREQUISITES" -.PP -In order to use \fBOfflineIMAP\fR, you need to have these conditions -satisfied: -.TP 0.2i -\(bu -Your mail server must support IMAP. Most Internet Service -Providers -and corporate networks do, and most operating systems -have an IMAP -implementation readily available. -.TP 0.2i -\(bu -You must have Python version 2.2.1 or above installed. -If you are -running on Debian GNU/Linux, this requirement will automatically be -taken care of for you. If you do not have Python already, check with -your system administrator or operating system vendor; or, download it from -the Python website \&. -If you intend to use the Tk interface, you must have Tkinter -(python-tk) installed. If you intend to use the SSL interface, your -Python must have been built with SSL support. -.TP 0.2i -\(bu -Have a mail reader that supports the Maildir mailbox -format. Most modern mail readers have this support -built-in, so you can choose from a wide variety of mail -servers. This format is also known as the "qmail" -format, so any mail reader compatible with it will work -with \fBOfflineIMAP\fR\&. If you do not have a mail reader -that supports Maildir, you can often install a local -IMAP server and point both \fBOfflineIMAP\fR and your mail -reader at it. -.SS "SYSTEM-WIDE INSTALLATION, DEBIAN" -.PP -If you are tracking Debian unstable, you may install -\fBOfflineIMAP\fR by simply running the following command as root: -.PP -\fBapt-get install offlineimap\fR -.PP -If you are not tracking Debian unstable, download the Debian .deb -package from the \fBOfflineIMAP\fR website -and then run \fBdpkg -i\fR to install the downloaded -package. Then, skip to [XRef to CONFIGURATION] below. You will type \fBofflineimap\fR to -invoke the program. -.SS "SYSTEM-WIDE INSTALLATION, OTHER" -.PP -Download the tar.gz version of the package from the -website \&. -Then run -these commands, making sure that you are the "root" user first: - -.nf -tar -zxvf offlineimap_x.y.z.tar.gz -cd offlineimap-x.y.z -python2.2 setup.py install -.fi -.PP -On some systems, you will need to use -\fBpython\fR instead of \fBpython2.2\fR\&. -Next, proceed to [XRef to CONFIGURATION] below. You will type \fBofflineimap\fR to -invoke the program. -.SS "SINGLE-ACCOUNT INSTALLATION" -.PP -Download the tar.gz version of the package from the -website \&. -Then run these commands: - -.nf -tar -zxvf offlineimap_x.y.z.tar.gz -cd offlineimap-x.y.z -.fi -.PP -When you want to run \fBOfflineIMAP\fR, you will issue the -\fBcd\fR command as above and then type -\fB\&./offlineimap.py\fR; there is no installation -step necessary. -.SH "CONFIGURATION" -.PP -\fBOfflineIMAP\fR is regulated by a configuration file that is normally -stored in \fI~/.offlineimaprc\fR\&. \fBOfflineIMAP\fR -ships with a file named \fIofflineimap.conf\fR -that you should copy to that location and then edit. This file is -vital to proper operation of the system; it sets everything you need -to run \fBOfflineIMAP\fR\&. Full documentation for the configuration file -is included within the sample file. -.PP -\fBOfflineIMAP\fR also ships a file named -\fIofflineimap.conf.minimal\fR that you can also try. -It's useful if you want to get started with -the most basic feature set, and you can read about other features -later with \fIofflineimap.conf\fR\&. -.SH "OPTIONS" -.PP -Most configuration is done via the configuration file. Nevertheless, -there are a few command-line options that you may set for -\fBOfflineIMAP\fR\&. -.TP -\fB-1\fR -Disable most multithreading operations and use -solely a single-connection -sync. This effectively sets the -\fImaxsyncaccounts\fR -and all \fImaxconnections\fR configuration file -variables to 1. -.TP -\fB-P \fIprofiledir\fB\fR -Sets \fBOfflineIMAP\fR into profile mode. The program -will create \fIprofiledir\fR -(it must not already exist). As it runs, Python profiling -information -about each thread is logged into profiledir. Please note: This option -is present for debugging and optimization only, and should NOT be used -unless you have a specific reason to do so. It will significantly -slow program performance, may reduce reliability, and can generate -huge amounts of data. You must use the \fB-1\fR option when -you use \fB-P\fR\&. -.TP -\fB-a \fIaccountlist\fB\fR -Overrides the \fIaccounts\fR option -in the \fIgeneral\fR section of the configuration -file. You might use this to exclude certain accounts, or to sync -some accounts that you normally prefer not to. Separate the -accounts by commas, and use no embedded spaces. -.TP -\fB-c \fIconfigfile\fB\fR -Specifies a configuration file to use in lieu of -the default, \fI~/.offlineimaprc\fR\&. -.TP -\fB-d \fIdebugtype[,...]\fB\fR -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 -\fB-1\fR to make the results more sensible. - -\fB-d\fR requires one or more debugtypes, -separated by commas. These define what exactly will be -debugged, and include three options: \fIimap\fR, -\fImaildir\fR, and \fIthread\fR\&. -The \fIimap\fR -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 -\fImaildir\fR option will enable debugging for -certain Maildir operations. And \fIthread\fR -will debug the threading model. -.TP -\fB-l \fIfilename\fB\fR -Enables logging to filename. This will log everything -that goes to the screen to the specified file. -Additionally, if any debugging is specified with -d, -then debug messages will not go to the screen, but -instead to the logfile only. -.TP -\fB-o\fR -Run only once, ignoring all -\fIautorefresh\fR settings in the configuration -file. -.TP -\fB-h\fR -.TP -\fB--help\fR -Show summary of options. -.TP -\fB-u \fIinterface\fB\fR -Specifies an alternative user interface module -to use. This overrides the default specified in the -configuration file. The pre-defined options are listed in -the User Interfaces section. -.SH "USER INTERFACES" -.PP -\fBOfflineIMAP\fR has a pluggable user interface system that lets you choose how the -program communicates information to you. There are two graphical -interfaces, two terminal interfaces, and two noninteractive interfaces -suitable for scripting or logging purposes. The -\fIui\fR option in the configuration file specifies -user interface preferences. The \fB-u\fR command-line -option can override the configuration file setting. The available -values for the configuration file or command-line are described -in this section. -.SS "TK.BLINKENLIGHTS" -.PP -Tk.Blinkenlights is an interface designed to be sleek, fun to watch, and -informative of the overall picture of what \fBOfflineIMAP\fR -is doing. I consider it to be the best general-purpose interface in -\fBOfflineIMAP\fR\&. -.PP -Tk.Blinkenlights contains, by default, a small window with a row of -LEDs, a small log, and a row of command buttons. -The total size of the window is -very small, so it uses little desktop space, yet it is quite -functional. The optional, toggleable, log shows more -detail about what is happening and is color-coded to match the color -of the lights. -.PP -Tk.Blinkenlights is the only user interface that has configurable -parameters; see the example \fIofflineimap.conf\fR -for more details. -.PP -Each light in the Blinkenlights interface represents a thread -of execution -- that is, a particular task that \fBOfflineIMAP\fR -is performing right now. The colors indicate what task -the particular thread is performing, and are as follows: -.TP -\fBBlack\fR -indicates that this light's thread has terminated; it will light up -again later when new threads start up. So, black indicates no -activity. -.TP -\fBRed (Meaning 1)\fR -is the color of the main program's thread, which basically does -nothing but monitor the others. It might remind you of HAL 9000 in -2001\&. -.TP -\fBGray\fR -indicates that the thread is establishing a new connection to the IMAP -server. -.TP -\fBPurple\fR -is the color of an account synchronization thread that is monitoring -the progress of the folders in that account (not generating any I/O). -.TP -\fBCyan\fR -indicates that the thread is syncing a folder. -.TP -\fBGreen\fR -means that a folder's message list is being loaded. -.TP -\fBBlue\fR -is the color of a message synchronization controller thread. -.TP -\fBOrange\fR -indicates that an actual message is being copied. -(We use fuchsia for fake messages.) -.TP -\fBRed (meaning 2)\fR -indicates that a message is being deleted. -.TP -\fBYellow / bright orange\fR -indicates that message flags are being added. -.TP -\fBPink / bright red\fR -indicates that message flags are being removed. -.TP -\fBRed / Black Flashing\fR -corresponds to the countdown timer that runs between -synchronizations. -.PP -The name of this interfaces derives from a bit of computer -history. Eric Raymond's Jargon File defines -\fIblinkenlights\fR, in part, as: -.sp -.RS -.PP -Front-panel diagnostic -lights on a computer, esp. a dinosaur. Now that dinosaurs are rare, -this term usually refers to status lights on a modem, network hub, or -the like. -.PP -This term derives from the last word of the famous blackletter-Gothic -sign in mangled pseudo-German that once graced about half the computer -rooms in the English-speaking world. One version ran in its entirety as -follows: -.PP -\fBACHTUNG! ALLES LOOKENSPEEPERS!\fR -.PP -Das computermachine ist nicht fuer gefingerpoken und mittengrabben. -Ist easy schnappen der springenwerk, blowenfusen und poppencorken -mit spitzensparken. Ist nicht fuer gewerken bei das dumpkopfen. -Das rubbernecken sichtseeren keepen das cotten-pickenen hans in das -pockets muss; relaxen und watchen das blinkenlichten. -.RE -.SS "CURSES.BLINKENLIGHTS" -.PP -Curses.Blinkenlights is an interface very similar to Tk.Blinkenlights, -but is designed to be run in a console window (an xterm, Linux virtual -terminal, etc.) Since it doesn't have access to graphics, it isn't -quite as pretty, but it still gets the job done. -.PP -Please see the Tk.Blinkenlights section above for more -information about the colors used in this interface. -.SS "TK.VERBOSEUI" -.PP -Tk.VerboseUI (formerly known as Tk.TkUI) is a graphical interface -that presents a variable-sized window. In the window, each -currently-executing thread has a section where its name and current -status are displayed. This interface is best suited to people running -on slower connections, as you get a lot of detail, but for fast -connections, the detail may go by too quickly to be useful. People -with fast connections may wish to use Tk.Blinkenlights instead. -.SS "TTY.TTYUI" -.PP -TTY.TTYUI interface is for people running in basic, non-color terminals. It -prints out basic status messages and is generally friendly to use on a console -or xterm. -.SS "NONINTERACTIVE.BASIC" -.PP -Noninteractive.Basic is designed for situations in which \fBOfflineIMAP\fR -will be run non-attended and the status of its execution will be -logged. You might use it, for instance, to have the system run -automatically and -e-mail you the results of the synchronization. This user interface -is not capable of reading a password from the keyboard; account -passwords must be specified using one of the configuration file options. -.SS "NONINTERACTIVE.QUIET" -.PP -Noninteractive.Quiet is designed for non-attended running in situations -where normal status messages are not desired. It will output nothing -except errors and serious warnings. Like Noninteractive.Basic, -this user interface -is not capable of reading a password from the keyboard; account -passwords must be specified using one of the configuration file options. -.SH "EXAMPLES" -.PP -Here are some example configurations for various situations. -Please e-mail any other examples you have that may be useful to -me. -.SS "MULTIPLE ACCOUNTS WITH MUTT" -.PP -This example shows you how to set up \fBOfflineIMAP\fR to -synchronize multiple accounts with the mutt mail reader. -.PP -Start by creating a directory to hold your folders by running -\fBmkdir ~/Mail\fR\&. Then, in your -\fI~/.offlineimaprc\fR, specify: - -.nf -accounts = Personal, Work -.fi -.PP -Make sure that you have both an -\fI[Account Personal]\fR -and an \fI[Account Work]\fR section. The -local repository for each account must have different -\fIlocalfolder\fR path names. -Also, make sure -to enable \fI[mbnames]\fR\&. -.PP -In each local repository section, write something like this: - -.nf -localfolders = ~/Mail/Personal -.fi -.PP -Finally, add these lines to your \fI~/.muttrc\fR: - -.nf -source ~/path-to-mbnames-muttrc-mailboxes -folder-hook Personal set from="youremail@personal.com" -folder-hook Work set from="youremail@work.com" -set mbox_type=Maildir -set folder=$HOME/Mail -spoolfile=+Personal/INBOX -.fi -.PP -That's it! -.SS "UW-IMAPD AND REFERENCES" -.PP -Some users with a UW-IMAPD server need to use \fBOfflineIMAP\fR\&'s -"reference" feature to get at their mailboxes, specifying a reference -of "~/Mail" or "#mh/" depending on the configuration. The below -configuration from (originally from docwhat@gerf.org) -shows using a \fIreference\fR of Mail, a \fInametrans\fR -that strips -the leading Mail/ off incoming folder names, and a -\fIfolderfilter\fR that -limits the folders synced to just three. - -.nf -[Account Gerf] -localrepository = GerfLocal -remoterepository = GerfRemote - -[Repository GerfLocal] -type = Maildir -localfolders = ~/Mail - -[Repository GerfRemote] -type = IMAP -remotehost = gerf.org -ssl = yes -remoteuser = docwhat -reference = Mail -# Trims off the preceeding Mail on all the folder names. -nametrans = lambda foldername: \\ - re.sub('^Mail/', '', foldername) -# Yeah, you have to mention the Mail dir, even though it -# would seem intuitive that reference would trim it. -folderfilter = lambda foldername: foldername in [ - 'Mail/INBOX', - 'Mail/list/zaurus-general', - 'Mail/list/zaurus-dev', - ] -maxconnections = 1 -holdconnectionopen = no -.fi -.SS "PYTHONFILE CONFIGURATION FILE OPTION" -.PP -You can have \fBOfflineIMAP\fR -load up a Python file before evaluating the -configuration file options that are Python expressions. This example -is based on one supplied by Tommi Virtanen for this feature. -.PP -In \fI~/.offlineimap.rc\fR, he adds these options: - -.nf -[general] -pythonfile=~/.offlineimap.py -[Repository foo] -foldersort=mycmp -.fi -.PP -Then, the \fI~/.offlineimap.py\fR file will -contain: - -.nf -prioritized = ['INBOX', 'personal', 'announce', 'list'] - -def mycmp(x, y): - for prefix in prioritized: - xsw = x.startswith(prefix) - ysw = y.startswith(prefix) - if xsw and ysw: - return cmp(x, y) - elif xsw: - return -1 - elif ysw: - return +1 - return cmp(x, y) - -def test_mycmp(): - import os, os.path - folders=os.listdir(os.path.expanduser('~/data/mail/tv@hq.yok.utu.fi')) - folders.sort(mycmp) - print folders -.fi -.PP -This code snippet illustrates how the \fIfoldersort\fR -option can be customized with a Python function from the -\fIpythonfile\fR to always synchronize certain -folders first. -.SH "ERRORS" -.PP -If you get one of some frequently-encountered or confusing errors, -please check this section. -.SS "UID VALIDITY PROBLEM FOR FOLDER" -.PP -IMAP servers use a unique ID (UID) to refer to a specific message. -This number is guaranteed to be unique to a particular message -\fBforever\fR\&. -No other message in the same folder will ever get the same -UID. UIDs are an integral part of \fBOfflineIMAP\fR\&'s synchronization -scheme; they are used to match up messages on your computer to -messages on the server. -.PP -Sometimes, the UIDs on the server might get reset. Usually this will -happen if you delete and then recreate a folder. When you create a -folder, the server will often start the UID back from 1. But -\fBOfflineIMAP\fR might still have the UIDs from the previous folder by the -same name stored. \fBOfflineIMAP\fR will detect this condition and skip the -folder. This is GOOD, because it prevents data loss. -.PP -You can fix it by removing your local folder and cache data. For -instance, if your folders are under \fI~/Folders\fR -and the folder with the problem is INBOX, you'd type this: - -.nf -rm -r ~/Folders/INBOX -rm -r ~/.offlineimap/Account-\fIAccountName\fR -rm -r ~/.offlineimap/Repository-\fIRepositoryName\fR -.fi -.PP -(Of course, replace AccountName and RepositoryName -with the names as specified -in \fI~/.offlineimaprc\fR). -.PP -Next time you run \fBOfflineIMAP\fR, it will re-download -the folder with the -new UIDs. Note that the procedure specified above will lose any local -changes made to the folder. -.PP -Some IMAP servers are broken and do not support UIDs properly. If you -continue to get this error for all your folders even after performing -the above procedure, it is likely that your IMAP server falls into -this category. \fBOfflineIMAP\fR is incompatible with such servers. -Using \fBOfflineIMAP\fR with them will not destroy any mail, but at the same time, -it will not actually synchronize it either. (\fBOfflineIMAP\fR will detect -this condition and abort prior to synchronization.) -.PP -This question comes up frequently on the -\fBOfflineIMAP\fR -mailing list \&. You can find a -detailed -discussion of the problem there. -.SH "CONFORMING TO" -.TP 0.2i -\(bu -Internet Message Access Protocol version 4rev1 (IMAP 4rev1) as -specified in RFC2060 and RFC3501 -.TP 0.2i -\(bu -CRAM-MD5 as specified in RFC2195 -.TP 0.2i -\(bu -Maildir as specified in -the Maildir manpage and -the qmail website \&. -.TP 0.2i -\(bu -Standard Python 2.2.1 as implemented on POSIX-compliant systems. -.SH "NOTES" -.SS "DELETING LOCAL FOLDERS" -.PP -\fBOfflineIMAP\fR does a two-way synchronization. That is, if you -make a change to the mail on the server, it will be propagated to your -local copy, and vise-versa. Some people might think that it would be -wise to just delete all their local mail folders periodically. If you -do this with \fBOfflineIMAP\fR, remember to also remove your local status -cache (\fI~/.offlineimap\fR by default). Otherwise, \fBOfflineIMAP\fR will take -this as an intentional deletion of many messages and will interpret -your action as requesting them to be deleted from the server as well. -(If you don't understand this, don't worry; you probably won't -encounter this situation) -.SS "MULTIPLE INSTANCES" -.PP -\fBOfflineIMAP\fR is not designed to have several instances (for instance, a cron job and an interactive invocation) run over the same -mailbox simultaneously. It will perform a check on startup and -abort if another \fBOfflineIMAP\fR is already running. If you need -to schedule synchronizations, please use the -\fIautorefresh\fR settings rather than cron. -Alternatively, you can set a separate \fImetadata\fR -directory for each instance. -.SS "COPYING MESSAGES BETWEEN FOLDERS" -.PP -Normally, when you copy a message between folders or add a new message -to a folder locally, \fBOfflineIMAP\fR -will just do the right thing. However, sometimes this can be tricky --- if your IMAP server does not provide the SEARCH command, or does -not return something useful, \fBOfflineIMAP\fR -cannot determine the new UID of the message. So, in these rare -instances, OfflineIMAP will upload the message to the IMAP server and -delete it from your local folder. Then, on your next sync, the -message will be re-downloaded with the proper UID. -\fBOfflineIMAP\fR makes sure that the message was properly uploaded before deleting it, -so there should be no risk of data loss. -.SS "MAILING LIST" -.PP -There is an OfflineIMAP mailing list available. -To subscribe, send the text "Subscribe" in the subject of a mail to -offlineimap-request@complete.org. To post, send the message to -offlineimap@complete.org. Archives are available at - \&. -.SS "BUGS" -.PP -Reports of bugs should be reported online at the -\fBOfflineIMAP\fR homepage. -Debian users are encouraged to instead use the -Debian -bug-tracking system. -.SH "UPGRADING TO 4.0" -.PP -If you are upgrading from a version of \fBOfflineIMAP\fR prior to -3.99.12, you will find that you will get errors when -\fBOfflineIMAP\fR starts up (relating to ConfigParser or -AccountHashGenerator) and the -configuration file. This is because the config file format -had to change to accommodate new features in 4.0. Fortunately, -it's not difficult to adjust it to suit. -.PP -First thing you need to do is stop any running \fBOfflineIMAP\fR -instance, making sure first that it's synced all your mail. -Then, modify your -\fI~/.offlineimaprc\fR file. You'll need to -split up each account section (make sure that it now starts -with "Account ") into two Repository sections (one for the -local side and another for the remote side.) See the files -\fIofflineimap.conf.minimal\fR and -\fIofflineimap.conf\fR in the distribution if -you need more assistance. -.PP -\fBOfflineIMAP\fR\&'s status directory area has also changed. -Therefore, you should delete everything in ~/.offlineimap as -well as your local mail folders. -.PP -When you start up \fBOfflineIMAP\fR 4.0, it will re-download all -your mail from the server and then you can continue using it -like normal. -.SH "COPYRIGHT" -.PP -OfflineIMAP, and this manual, are Copyright (C) 2002 - 2006 John Goerzen. -.PP -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. -.PP -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. -.PP -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 -.PP -imaplib.py comes from the Python dev tree and is licensed under -the GPL-compatible PSF license as stated in the file -\fICOPYRIGHT\fR in the \fBOfflineIMAP\fR -distribution. -.SH "AUTHOR" -.PP -\fBOfflineIMAP\fR, its libraries, documentation, and all included files, except where -noted, was written by John Goerzen and -copyright is held as stated in the COPYRIGHT section. -.PP -\fBOfflineIMAP\fR may be downloaded, and information found, from its -homepage \&. -.SH "SEE ALSO" -.PP -\fBmutt\fR(1), -\fBpython\fR(1) -.SH "HISTORY" -.PP -Detailed history may be found in the file ChangeLog in the -\fBOfflineIMAP\fR distribution. Feature and bug histories may be -found in the file debian/changelog which, despite its name, is -not really Debian-specific. This section provides a large -overview. -.PP -Development on \fBOfflineIMAP\fR began on June 18, 2002. Version -1.0.0 was released three days later on June 21, 2002. Point -releases followed, including speed optimizations and some -compatibility fixes. -.PP -Version 2.0.0 was released on July 3, 2002, and -represented the first time the synchronization became -multithreaded and, to the best of my knowledge, the first -multithreaded IMAP syncrhonizing application in existance. -The last 2.0.x release, 2.0.8, was made on July 9. -.PP -Version 3.0.0 was released on July 11, 2002, and introduced -modular user interfaces and the first GUI interface for -\fBOfflineIMAP\fR\&. This manual also was introduced with 3.0.0, -along with many command-line options. Version 3.1.0 was -released on July 21, adding the Noninteractive user -interfaces, profiling support, and several bugfixes. 3.2.0 -was released on July 24, adding support for the Blinkenlights -GUI interface. \fBOfflineIMAP\fR entered maintenance mode for -awhile, as it had reached a feature-complete milestone in my -mind. -.PP -The 3.99.x branch began in on October 7, 2002, to begin work -for 4.0. The Curses.Blinkenlights interface was added in -3.99.6, and many architectural changes were made. -.PP -4.0.0 was released on July 18, 2003, including the ability to -synchronize directly between two IMAP servers, the first -re-architecting of the configuration file to refine the -notion of an account, and the new Curses interface. diff --git a/offlineimap.py b/offlineimap.py index 32009ac..84e106d 100644 --- a/offlineimap.py +++ b/offlineimap.py @@ -18,4 +18,4 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA from offlineimap import init -init.startup('4.0.16') +init.startup('4.0.15') diff --git a/offlineimap.spec b/offlineimap.spec index 7c0805c..3b5b7c6 100644 --- a/offlineimap.spec +++ b/offlineimap.spec @@ -1,6 +1,6 @@ Name: offlineimap Summary: Powerful IMAP/Maildir synchronization and reader support -Version: 4.0.16 +Version: 4.0.15 Release: 3 License: GPL Group: Applications/Internet diff --git a/offlineimap/folder/Maildir.py b/offlineimap/folder/Maildir.py index 74019cb..6d61c3d 100644 --- a/offlineimap/folder/Maildir.py +++ b/offlineimap/folder/Maildir.py @@ -1,5 +1,5 @@ # Maildir folder support -# Copyright (C) 2002 - 2006 John Goerzen +# Copyright (C) 2002 John Goerzen # # # This program is free software; you can redistribute it and/or modify @@ -170,8 +170,7 @@ class MaildirFolder(BaseFolder): file = open(os.path.join(tmpdir, tmpmessagename), "wt") file.write(content) file.close() - if rtime != None: - os.utime(os.path.join(tmpdir,tmpmessagename), (rtime,rtime)) + os.utime(os.path.join(tmpdir,tmpmessagename), (rtime,rtime)) ui.debug('maildir', 'savemessage: moving from %s to %s' % \ (tmpmessagename, messagename)) os.link(os.path.join(tmpdir, tmpmessagename), diff --git a/offlineimap/version.py b/offlineimap/version.py index f45bbfd..7f28034 100644 --- a/offlineimap/version.py +++ b/offlineimap/version.py @@ -1,5 +1,5 @@ productname = 'OfflineIMAP' -versionstr = "4.0.16" +versionstr = "4.0.15" versionlist = versionstr.split(".") major = versionlist[0]