aboutsummaryrefslogtreecommitdiffstats
path: root/dist-tools/test/test-request
blob: 56c31be7b4cf080ddcfe81ddedc635f2d29f31af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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.berlios.de/>.

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.
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 # -------------------------------------------------------------------------- # Usage: html2txt.sh INPUT.html # -------------------------------------------------------------------------- # Abort on error set -e # Parse arguments if [ $# -ne 1 ] ; then echo >&2 "Usage: `basename $0 || echo $0` input.html" exit 1 fi # Pull in variables inp="$1" tmp="html2txt.$$.html" # now preprocess trap "rm -f \"$tmp\"" 0 1 2 3 15 ${AWK:=awk} '/<table .*summary="Canned/ { i=1; } /<\/table>/ { i=0; } { if (i == 0) print $0; }' "$inp" >"$tmp" # and go! echo " (This file was generated from $inp)" lynx -dump -nolist "$tmp" rm -f "$tmp" trap "" 0 1 2 3 15