aboutsummaryrefslogtreecommitdiffstats
path: root/dist-tools/test/test-request
blob: c25e44e97b56362f4908635905bfe1c4b913e44c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
I maintain an open-source POP and IMAP client called fetchmail.  It is
widely used in the Linux and open-source community, and is probably
the single most popular remote-mail client in that world.  You can
find out more about this project at <http://fetchmail.sourceforge.net/>.

In order to be able to do thorough regression testing before each release,
I collect test accounts on as many different kinds of POP3, IMAP, and
ODMR servers as possible.  Because fetchmail is strictly conformant to the 
remote-mail RFCs, many server developers have found fetchmail a useful
standards-conformance test.

I'm writing to request test accounts on your server.  I support all flavors 
of POP2, POP3, IMAP and ODMR with either plain-password, CRAM-MD5, NTLM, 
GSSAPI, or Kerberos authentication.  I also support SSL/TLS.

It would be very helpful if I could have a separate test account for
each protocol you support (that is, separate POP3, IMAP, and ODMR
accounts) so I can do automated regression testing without worrying
about mailbox race conditions.
/span> exit 0 case "$1" in start) echo -n "Starting mail retrieval agent: " if start-stop-daemon --start --quiet --exec $DAEMON; then echo "fetchmail." else echo "fetchmail already running."; fi ;; stop) echo -n "Stopping mail retrieval agent: " start-stop-daemon --stop --quiet --exec $DAEMON echo "fetchmail." ;; force-reload|restart) echo -n "Restarting mail retrieval agent: " start-stop-daemon --stop --quiet --exec $DAEMON start-stop-daemon --start --quiet --exec $DAEMON echo "fetchmail." ;; *) echo "Usage: /etc/init.d/fetchmail {start|stop|restart}" exit 1 ;; esac exit 0