The Debian packages has two major differences to the original
software:

1. The binary run_email2trac is not build or installed, as it is
   not needed in most cases. E.g. one can just get the mail
   using getmail4 and call email2trac from there (see below).

2. The upstream debian directory in the source code has been
   removed in the orig.tar.gz file to prevent conflicts.

If you wish to use the run_email2trac program or the original
debian directory in the source, please download the archive
directly from the homepage.

Here is a working setup without run_email2trac:

$ sudo crontab -e -u mygetmailuser
*/5 * * * * /usr/bin/getmail > /dev/null

$ sudo cat /home/mygetmailuser/.getmail/getmailrc
[retriever]
type = SimpleIMAPSSLRetriever
server = mailserver.mycompany.com
username = mytracuser
password = s3cr3t
mailboxes = ("INBOX",)
move_on_delete = Trash

[destination]
type = MDA_external
path = /usr/bin/sudo
arguments = ("-u", "www-data", "/usr/bin/email2trac")

[options]
delete = True
verbose = 2
