-
Notifications
You must be signed in to change notification settings - Fork 1
/
top.html
3182 lines (2603 loc) · 136 KB
/
top.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<title>qmail: Second most popular MTA on the Internet</title>
<link rel="alternate" type="application/rss+xml" href="news.rdf" title="qmail news via rss">
<LINK REL="SHORTCUT ICON" HREF="/favicon.ico">
</head>
<body vlink="#004400" link="#008800" text="#000000" bgcolor="#ffffff" alink="#FF0000">
<table>
<tr>
<td>
<a href="/"><IMG width="203" height="186" border="0" alt="logo" SRC="Q.6.01.Logo.lg.jpg" ></a>
</td><td> <CENTER><img _parsed=1 border=0 alt="The qmail home page"
src="qmpage.gif" align=bottom width=377 height=46></CENTER>
</td>
</tr>
</table>
<p>
<center><a href="http://www.ru.qmail.org/"><img src="russian2.gif" width="450" height="36" alt="View a Russian-language site"></a></center>
<center><a href="http://qmail.kldp.org"><img src="kl-qmail-w.gif" width="330" height="34" alt="View a Korean-language site"></a></center>
<center><a href="http://www.chinese.qmail.org"><img src="qmail-c.gif" width="330" height="34" alt="View a Chinese-language site"></a></center>
<center><a href="http://qmail.free.fr/">qmail francophone</a></center>
<p>Please note that this site is a reference for qmail users. It's
not designed to be easy to use -- it's designed to be comprehensive.
There are things in here which have sharp edges! If you're looking
for a tutorial site, visit Dave Sill's excellent <a
href="http://www.lifewithqmail.org">Life With Qmail</a> site.
<p>
qmail is a <a href="blurb.html">modern SMTP server</a> which makes
sendmail <a href="http://cr.yp.to/surveys.html">obsolete</a>, written
by <a HREF="http://cr.yp.to/djb.html">Dan Bernstein</a>, who also has
a <A HREF="http://cr.yp.to/qmail.html">web page for qmail</a>. qmail
is a secure package. You can <a href="netqmail-1.06.tar.gz">download
netqmail 1.06</a> (Redhat <a href="rpms/">RPMs</a>, and Debian <a
href="#200107200">.debs</a>, <a href="#200301110">HP-UX</a>, <a
href="#200303200">Gentoo</a>, and OpenBSD <a
href="#200207290">ports</a>) and <a
href="http://cr.yp.to/qmail/dist.html">redistribute</a> qmail for
free. You can get the <a href="http://www.nrg4u.com">"big
picture"</a> of how qmail is organized. You should read <a
href="http://www.lifewithqmail.org/">Life with qmail</a>.
<P>There is a <A HREF="mailto:[email protected]">discussion
list</A> and an <a
href="mailto:[email protected]">announcements list</a>
for qmail users, maintained by Dan Bernstein using qmail, <I>of
course</I>. There's also an <a
href="http://www.ornl.gov/cts/archives/mailing-lists/qmail/">archive</a>.
You can <a href="http://www-archive.ornl.gov:8000">search it</a>.
It's also archived at <a
href="http://marc.theaimsgroup.com/?l=qmail">The Aims Group</a>, at <a
href="http://gossamer-threads.com/lists/qmail/users/">Gossamer
Threads</a>, and in <a
href="http://www.linuxinsight.com/qmail_archive_mbox_format.html">Mailbox-format
archives</a>. Charles Cazabon has written some guidelines for <a
href="http://pyropus.ca/personal/writings/12-steps-to-qmail-list-bliss.html">posting
to the list</a>. There is also an FAQ, providing <a
href="http://cr.yp.to/qmail/faq.html">answers to frequently-asked
questions</a>. qmail is <a href="not-open-source.html"><em>now</em>
open source</a>.
<p date="19991226"><a name="19991226"> Dan's updated FAQ is also available in <a
href="http://es.qmail.org/documentacion/autor/FAQ/">other file
formats</a>, and in <a
href="http://www.es.qmail.org/documentacion/distro/puf/">Spanish</a>.</a>
<p>A number of large Internet sites are using qmail: USA.net's
outgoing email, Address.com, Rediffmail.com, Colonize.com, Yahoo!
mail, Network Solutions, Verio, MessageLabs (searching 100M
emails/week for malware), listserv.acsu.buffalo.edu (a big listserv
hub, using qmail since 1996), Ohio State (biggest US University),
Yahoo! Groups, Listbot, USWest.net (Western US ISP), Telenordia,
gmx.de (German ISP), NetZero (free ISP), Critical Path (email
outsourcing service w/ 15M mailboxes), PayPal/Confinity,
Hypermart.net, Casema, Pair Networks, Topica, MyNet.com.tr,
FSmail.net, Mycom.com, and vuurwerk.nl.</p>
<p><img src="updated.gif" alt="updated" width=52 height=12
date="200401270"><a name="200401270"> Charles Cazabon, Dave Sill,
Henning Brauer, Peter Samuel, and Russell Nelson have put together a <a
href="netqmail/">netqmail-1.06</a> distribution of qmail</a>. It is
comprised of qmail-1.03 plus the <a href="#patches">recommended
patches</a> and some documentation.</p>
<p>
<a name="index">Table of Contents:</a>
<ul>
<li><a href="#addons">[addons]</a>
<li><a href="#author">[author's software]</a>
<li><a href="#book">[books]</a>
<li><a href="#paidsup">[commercial support]</a>
<li><a href="#checkpassword">[checkpassword]</a>
<li><a href="#ezmlm">[ezmlm]</a>
<li><a href="#large">[high-volume servers]</a>
<li><a href="#maildir">[maildir]</a>
<li><a href="#microsoft">[Microsoft virus prevention]</a>
<li date="200012280"><a href="news.html">[news]</a> qmail news is also
available as a <a href="news.rdf">news channel</a>, and a <a
href="http://slashdot.org/">Slashdot</a> slashbox.
<li><a href="#patches">[Recommended patches]</a>
<li><a href="#spam">[spam prevention]</a></a>
<li><a href="#tips">[tips]</a>
<li><a href="#usersoft">[user software]</a>
<li><a href="#userdoc">[user documentation]</a>
</ul>
<p>
<a name="paidsup"> </a>
<table border=0 cellpadding=0 cellspacing=0>
<tr><td colspan=2> </td>
<td rowspan=3> <b>Commercial Support</b></td>
<td colspan=2> </td></tr>
<tr><td bgcolor="#000000" colspan=2>
<img src="1x1.gif" alt="" width=1 height=1></td>
<td bgcolor="#000000" colspan=2>
<img src="1x1.gif" alt="" width=1 height=1></td></tr>
<tr><td bgcolor="#000000"><img src="1x1.gif" alt="" width=1 height=1></td>
<td width=25> </td><td width=350> </td>
<td bgcolor="#000000"><img src="1x1.gif" alt="" width=1 height=1></td></tr>
<tr><td bgcolor="#000000"><img src="1x1.gif" alt="" width=1 height=1></td>
<td colspan=3>
<table border=0 cellspacing=5 ><tr><td>
<P>
Commercial support is available for qmail.
<ul>
<li><a href="http://www.jcb-sc.com/">James Craig Burley, Software
Craftsperson</a>, offers assessment, installation, support, training,
and documentation for qmail and related software, specializing in
low-maintenance, rock-solid anti-spam, anti-virus solutions for small-
and medium-size organizations.
<li><A HREF="http://www.saffron.net">Saffron Solutions</A> is a
customer-focused IT services company offering computer <A
HREF="http://www.saffron.net/systems/">system</A>, <A
HREF="http://www.saffron.net/network/">network</A>, and <A
HREF="http://www.saffron.net/security/">security</A> consulting and
systems integration. Based in Boston, MA, Saffron Solutions provides
<A HREF="http://www.saffron.net/systems/qmail/">qmail</A> and other
open source software support to customers in the US and Canada.
<li><a href="http://www.bettercom.de/de/support">bettercom</a> (located
in Hamburg, Germany) provides support, installation and administration
services for qmail and open-source software in Germany and
elsewhere in Europe.
<li><a href="http://www.acrconsulting.co.uk/email/qmail.html">Andrew
Richards</a> is a qmail solutions specialist: Straightforward support,
consultancy, maintenance and troubleshooting services for qmail and
related systems.
<a href="http://www.acrconsulting.co.uk/email/install.html">Design
and installation</a> of new qmail-based systems - any size, any location.
Tel. +44 1142 789 884.
<li><a href=http://www.top-consulting.net/qmail.shtml>G-Tech Consulting</a>
offers high-quality services and support contracts at the lowest prices. We
offer support for Qmail, Webmail, Courier-Imap, djbdns, etc and a wide
variety of open-source software such as Apache, ProFTPD, Linux, FreeBSD,
OpenBSD.
<li><a href="http://www.drh.net/">David Harris</a>, author of open
source qmail addons, provides expert qmail support and installation
through his firm <a href="http://www.drh.net/">DRH Internet</a>.
Call toll free at 866-374-4678; internationally 410-461-5316.
<li><a href="http://www.inter7.com/?page=qmail">Inter7</a> provides
qmail support world-wide: remote access or at your location. Call toll
free in the U.S. at 866.528.3530, Internationally at 815.776.9465 or
via Voip at sip:[email protected]
<li><a href="http://www.quist.ca">Quist Consulting</a> provides
support for qmail in Canada, the USA and elsewhere over the Internet.
<li><a href="http://www.aidasystems.com/"> AiDA Systems </a> offers
Qmail, Webmail AntiVirus, AntiSpam, and djbdns support. We also offer
high-availability, clustering, redundancy, load balancing (layer 4
switching, round-robin dns) and failover services for medium/large
ISP's. We also support migration from Windows/Unix platforms to any
Unix platform (FreeBSD, OpenBSD, Linux, Solaris, others) Call
209.639.2989
<li><a href="http://www.blackmesh.com/qmail.php">BlackMesh</a> provides a full
range of qmail services, from consulting to shared qmail servers and dedicated
qmail servers. In addition to qmail support, BlackMesh provides a full range
of consulting and hosting--from shared to dedicated--services. 888.473.0854
<li><a href="http://www.ibase.com.hk">iBase Technologies</a> from Hong
Kong offers qmail based corporate email solutions for the Asian
region. Solutions include corporate email solutions,
anti-spam/anti-virus, high-volume servers, consultancy and system
administration services.
<li><a href=" http://www.rozmic.com/team.html"> Ross Cooney</a> from <a
href="http://www.rozmic.com">Rozmic</a> provide support for qmail to
European based organisations and ISP's. Rozmic also provide a managed
spam filtration service called <a
href="http://www.emailcloud.com">EmailCloud</a> which is built upon
qmail.
<li><a href="http://www.rieger-cm.de/">RIEGER - Consulting &
Management</a> offers consulting, installaton and adminstrative
services for qmail, djbdns and other software including help with
general server tasks to customers located in Germany and nearby
countries.
<li><a href="http://linuxis.net">LinuxIS Consulting</a> provides consulting,
installation, and support services for qmail, djbdns, and most other
DJB-ware and Open Source software. Accepts Visa, M/C, American Express and
Paypal.
<li><a href="http://www.clearlyconnected.com/">Clearly Connected</a>
provides contractual and by-the-hour support for qmail and other MTAs.
We have a great deal of expertise in qmail on Linux, FreeBSD, and
Solaris.
<li><a href="http://www.excello.cz" title="Consulting, installation and
support for qmail - Excello">Excello</a> provides support for wide
range of qmail applications for SMB & Enterprise customers in the
Germany and Czech republic. They also run excellent high performance
antispam and antivirus solution on qmail platform known as <a
href="http://www.virusfree.cz" title="Hosted antispam solution with
SLA">Virusfree.cz</a>.
<li><A HREF="http://www.linuxmagic.com">LinuxMagic Inc.</a> Offers
high volume mail server support for ISP's and Enterprise throughout
the world. They have published free qmail support tools. Also
specializing in Anti-Spam solutions, Integration, High Performance
Tuning. Located in Canada, 24/7 support contracts also available.
<li><a href="http://www.advancedconsultinggroup.com/qmail/">Advanced
Consulting Group</a> - Los Angeles based Qmail installation and
support. Support for spam filtering, large deployments, and 24/7
support. Support all unix platforms. Call toll free (888) 595-9775.
<li><a href="http://disch-services.de">Disch Services GmbH</a>
(located near Nuremberg, Germany) is providing professional services
for open source software. The company is running also e-mail
servers with qmail for her german customers.
</ul>
<p>
</td></tr></table>
</td><td bgcolor="#000000"><img src="1x1.gif" alt="" width=1 height=1></td></tr>
<tr><td colspan=5 bgcolor="#000000">
<img src="1x1.gif" alt="" width=1 height=1></td></tr>
</table>
<p>
<a name="userdoc"> </a>
<table border=0 cellpadding=0 cellspacing=0>
<tr><td colspan=2> </td>
<td rowspan=3> <b>User-Contributed Documentation</b></td>
<td colspan=2> </td></tr>
<tr><td bgcolor="#000000" colspan=2>
<img src="1x1.gif" alt="" width=1 height=1></td>
<td bgcolor="#000000" colspan=2>
<img src="1x1.gif" alt="" width=1 height=1></td></tr>
<tr><td bgcolor="#000000"><img src="1x1.gif" alt="" width=1 height=1></td>
<td width=25> </td><td width=350> </td>
<td bgcolor="#000000"><img src="1x1.gif" alt="" width=1 height=1></td></tr>
<tr><td bgcolor="#000000"><img src="1x1.gif" alt="" width=1 height=1></td>
<td colspan=3>
<table border=0 cellspacing=5 ><tr><td>
<P>
Documentation contributed by users
<ul>
<li>qmail manual pages converted to HTML <a href="man.tar.gz">as a
tarball</a>, and <a href="man/index.html">individually</a>.
<li>Michael Samuel collected some documentation for qmail. It is no
longer accessible and is not being maintained. Arjen van Drie has a <a
href="http://qmail.3va.net">mirror</a>.
<li>Paul Gregg has written instructions on how to configure qmail to
handle many mail users (multiple email addresses) with separate POP3
accounts - <a href="http://www.pgregg.com/projects/">without
using system accounts</a>.
<li><a href="http://www-sv.cict.fr/lsp/Chafai/">Djalil Chafaï</a> has
written <a
href="http://savage.iut-blagnac.fr/projets/doc/qmail/v0.4/">«Introduction
à qmail»</a>, an introduction to qmail for french speaking users.
<li>Chris Johnson wrote something called "<a
href="http://www.palomine.net/qmail/relaying.html">The qmail newbie's
guide to relaying</a>", which is supposed to answer most of the
relaying questions that come across the qmail list.
<li>Adam D. McKenna has written a <a
href="https://sites.google.com/a/flounder.net/homepage/qmail-howto">qmail HOWTO</a>.
<li>Dave Sill has written <a
href="http://www.lifewithqmail.org/">Life with qmail</a>.
<li date="20000622"><a name="20000622">
Erwin Hoffmann was supposed to give a <a
href="http://www.fehcom.de/qmail_en.html">German-language QMAIL
presentation</a></a> at a congress of the German Unix User Group (GUUG)
(http://www.guug.de). However, the whole congress was canceled thus
the presentation is more or less "virtual".
<li date="20000720"><a name="20000720">
Dave Kitabjian has some diagnostic suggestions for various qmail
problems</a> on his <a
href="http://www.kitabjian.com/dave/qmailhelp/">Q-Cards</a> page.
<li date="20000721"><a name="20000721">
Philip Jacob wrote up some <a
href="http://www.whirlycott.com/phil/pop3.html">instructions</a> on
using checkpoppasswd</a> to create virtual users on virtual hosts,
accessing their mail via pop3.</a>
<li date="200101070"><a name="200101070">Davide Giunchi has written an <a
href="http://www.giunchi.net/italian-qmail-howto">Italian qmail
HOWTO</a></a>, this Italian language document explains how to install,
configure and run qmail. This isn't a translation of the English
"qmail howto" but is written from scratch.
<li date="200101220"><a name="200101220">Oliver Lehmann has written a
<a href="http://www.pofo.de/HOWTO/qmail/">German FreeBSD
qmail-howto</a></a>. Steven Fettig has translated Chapters 1-4 into
<a href="http://www.stevenfettig.com/mythoughts/archives/cat_qmailhowto.php">English</a>.
<li date="20010317"><a name="20010317">Patrick contributes an <a
href="xinetd.text">xinetd</a> configuration for qmail-pop3d.</a>
<li date="200105310"><a name="200105310">Ismail Yenigul has written a
<a href="http://www.enderunix.org/documents/qmail.html">Turkish
qmail-howto</a></a>.
<li date="200105311"><a name="200105311"><a
href="http://www.dulug.duke.edu/~icon/qvcs-guide/">Qmail-VmailMgr-Courier-SquirrelMail
installation guide</a></a>, written by Konstantin Riabitsev.</a>
<li date="200106250"><a name="200106250">Martin Östlund has written a <a
href="http://support.linux.se/?main=docs/qmailhowto.php&org=docs">Swedish
qmail-howto</a></a>.
<li date="200212260"><a name="200212260">Rene Schleicher has written a <a
href="http://www.systemprotect.de/~rene/qmail-doku.pdf">qmail/vpopmail-Installation</a>
HOWTO in German.</a>
<li date="200111160"><a name="200111160">Looking for information on how to
<a href="http://www.goldmark.org/jeff/stupid-disclaimers/">add a
disclaimer</a> to your outgoing email?</a>
<a name="200111200" />
<li><img src="updated.gif" alt="updated" width=52 height=12
date="200409120"><a name="200409120">Daniele Ripanti and Marco
Rocchetti have written a <a
href="http://web.tiscali.it/dax_ramis">HOWTO in Italian</a></a>
describing a qmail installation on FreeBSD with POP3, IMAP, Mailing
list, Antivirus, Antispam support and webmail.
<li><a name="200206182"/><img src="updated.gif" alt="updated" width=52
height=12 date="200807300"><a name="200807300">Reza Gamal has written
a qmail guide in <a
href="http://blog.chipset.or.id/qmail/">Indonesian</a>.</a>
<li date="200207090"><a name="200207090">Michel Morelli is running an <a
href="http://lists.ziobudda.net/mailman/listinfo/qmail-it">Italian-language
list</a>.</a>
<li date="200207091"><a name="200207091">Paul Niewiadomski has translated
<a href="http://iidea.pl/~paweln/tlum/qmail-doki.tar.bz2">man pages
into Polish</a>.</a> Actually, he's Paweł Niewiadomski, but you need
an 8859-2 character set to properly render his name. I can't wait for
UTF-8 to be supported everywhere.
<li date="200207100"><a name="200207100">Marco Tizzoni has translated <a
href="http://medialab.dyndns.org/~elibus/lwq.html">Life With Qmail
into Italian</a>.</a>
<a name="200208070"></a>
<li date="200302250"><a name="200302250">Mário Gamito has some <a
href="http://www.startux.org/index.php?article=1052&visual=2">Portuguese
documentation</a></a>.
<a name="200210280"></a>
<li date="200304070"><a name="200304070">Asfihani has written Installing
Qmail With <a
href="http://www.layangan.com/asfik/writings/qmail-vmailmgr.html">vmailmgr</a>
and <a
href="http://www.layangan.com/asfik/writings/qmail-vpopmail.html">vpopmail</a>
in Indonesian language</a>. He also covers omail admin, courier-imap
and squirrelmail.
<li date="200210300"><a name="200210300">Ciprian has <a
href="http://www.benchmarks.dmz.ro/">three benchmark articles</a>
comparing sendmail, qmail, and PostFix.</a>
<li date="200212170"><a name="200212170">Andrew St. Jean describes his <a
href="http://www.arda.homeunix.net/mailsetup.shtml">qmail
configuration</a></a> and using qmail's null client, Courier IMAP, and
TMDA.
<li date="200302110"><a name="200302110">John M. Simpson is running
<a href="http://qmail.jms1.net/courier-daemontools.shtml">courier-imap under daemontools</a></a>.
<li date="200303200"><a name="200303200">Kris Kelley has <a
href="http://www.skunkworx.org/guides/QmailOnGentoo.txt">Gentoo
installation instructions</a>.</a>
<li date="200305010"><a name="200305010">Frank Niedermann has written a
HowTo install qmail on <a
href="http://www.cargal.org/downloads/HOW-TO/debianqmail/debianqmail.html">Debian
in German</a> language.</a>
<li date="200305020"><a name="200305020">Jeffrey Clement wrote up a <a
href="http://jclement.ca/docs/debian_qmail/">Debian HOWTO</a> on
setting up qmail, Vmailmgr, CourierIMAP, SpamAssassin, and ezmlm</a>.
<li date="200306120"><a name="200306120">Sylvestre Ledru wrote some bits on
using <a
href="http://sylvestre.ledru.info/howto/howto_qmail_spamassassin.php">spam
assassin with qmail</a></a>.
<li date="200311020"><a name="200311020">Roberto Lacava has Italian
installation instructions for <a
href="http://www.baslug.org/vega/qmail/">qmail on Red Hat 9</a></a>.
<li date="200312090"><a name="200312090">Erwin Hoffmann has compiled a
tutorial about <a href="http://www.fehcom.de/qmail/smtpauth.html">SMTP
Authentication</a></a> (as part of my canceled Qmail Book) which is
available in english language. Readers will find an updated version
of Krysztof Dabrowski's SMTP Auth patch which should cleanly interface
with eg. netqmail-1.04.
<li date="200405100"><a name="200405100">Larry M. Smith has written
instructions for using <a
href="http://www.fahq2.com/qmail/honeypot.html">qmail as a
honeypot</a></a>.
<li date="200410100"><a name="200410100">Sumanth NS has a <a
href="http://ece.iisc.ernet.in/FAQ">qmail + UUCP how-to</a>.</a>
<li><a name="200509010">Bill Shupp has installation
instructions for a <a href="http://shupp.org/toaster/">qmail
toaster</a></a>. No, not to make crispy bread, but instead to put
together qmail, patches, and ancillary software into one installation.
<li date="200604060"><a name="200604060">Lukas Feiler has instructions for
installing <a href="http://rocketscience.lukasfeiler.com/qmail/">qmail
with TLS and SMTP auth</a>,...</a> Courier-IMAP/POP3, MySQL, Clam AV,
SpamAssassin - all with virtual domain support.</a>
<li date="200702150"><a name="200702150">Mark Steele wrote up some notes
on <a href="http://www.control-alt-del.org/code/index.html">Setting up
a Qmail front-end for M$ Exchange server</a></a>
<li date="201011050"><a name="201011050">Roberto Puzzanghera has
written an English/Italian HOWTO, which explains how to <a
href="http://notes.sagredo.eu/node/8">put together the latest versions
of netqmail</a>, vpopmail, dovecot, roundcube webmail, spamassassin,
clamav, simscan and some and related software.</a>
</ul>
<p>
</td></tr></table>
</td><td bgcolor="#000000"><img src="1x1.gif" alt="" width=1 height=1></td></tr>
<tr><td colspan=5 bgcolor="#000000">
<img src="1x1.gif" alt="" width=1 height=1></td></tr>
</table>
<p><a href="#index">[index]</a>
<p>
<a name="author"> </a>
<table border=0 cellpadding=0 cellspacing=0>
<tr><td colspan=2> </td>
<td rowspan=3> <b>Author's Enhancement Software for qmail</b></td>
<td colspan=2> </td></tr>
<tr><td bgcolor="#000000" colspan=2>
<img src="1x1.gif" alt="" width=1 height=1></td>
<td bgcolor="#000000" colspan=2>
<img src="1x1.gif" alt="" width=1 height=1></td></tr>
<tr><td bgcolor="#000000"><img src="1x1.gif" alt="" width=1 height=1></td>
<td width=25> </td><td width=350> </td>
<td bgcolor="#000000"><img src="1x1.gif" alt="" width=1 height=1></td></tr>
<tr><td bgcolor="#000000"><img src="1x1.gif" alt="" width=1 height=1></td>
<td colspan=3>
<table border=0 cellspacing=5 ><tr><td>
<p>
Enhancements and additions to qmail by its author, Dan Bernstein.
<ul>
<li>ezmlm has its <a href="#ezmlm">own section</a>.
<li>The <a href="http://cr.yp.to/serialmail.html">serialmail</a>
package delivers mail from a Maildir to an SMTP server.
<a name="noinetd"><li>The <a
href="http://cr.yp.to/ucspi-tcp.html">Unix Client-Server TCP</a>
package makes ordinary Unix programs into TCP/IP servers and/or
clients. In particular its tcpserver program should be used with
qmail instead of inetd. This package now includes Dan's <a
href="rbl/">rblsmtpd</a> package for blocking spam using the RBL.
<p date="20000728"><a name="20000728">
Gerrit Pape has written man pages for <a
href="http://smarden.org/pape/djb/manpages/ucspi-tcp-0.88-man.tar.gz">ucspi-tcp-0.88</a>,
<a
href="http://smarden.org/pape/djb/manpages/daemontools-0.70-man.tar.gz">daemontools-0.70</a>,
and <a
href="http://smarden.org/pape/djb/manpages/daemontools-0.76-man.tar.gz">daemontools-0.76</a>
to complement Dan's online HTML documentation.</p></a>
<p date="20000619"><a name="20000619">
Interestingly, William Baxter announced <a
href="http://www.superscript.com/ucspi-ipc/intro.html">ucspi-ipc</a>
and Bruce Guenter announced <a
href="http://untroubled.org/ucspi-unix/">ucspi-unix</a> within two days
of each other</a>. Same idea, different implementations.
<p date="20001214"><a name="20001214">
Bruce Guenter also has written <a
href="http://untroubled.org/ucspi-proxy/">ucspi-proxy</a></a>. It passes
data back and forth between two connections set up by a UCSPI server
and a UCSPI client.
<li date="200602150"><a name="200602150">William Baxter wrote <a
href="http://www.superscript.com/ucspi-ssl/intro.html">ucspi-ssl</a>
which uses OpenSSL to encrypt connections</a>.
<li><a name="200510060"><a href="http://www.suspectclass.com/~sgifford/">Scott Gifford</a>
has written an implementation of
<a href="http://www.suspectclass.com/~sgifford/ucspi-tls/ucspi-tls.txt">
UCSPI-TLS</a> for qmail</a>, which adds STARTTLS (RFC 2487) support to
qmail-smtpd and STLS (RFC 2595) support to qmail-pop3d while isolating
the encryption in a low-privilege process for security. You can get
<a href="http://www.suspectclass.com/~sgifford/ucspi-tls/"> UCSPI-TLS
patches for qmail, sslserver, and mailfront</a>, along with a detailed
<a href="http://www.suspectclass.com/~sgifford/ucspi-tls/ucspi-tls-qmail-howto.html">
UCSPI-TLS on qmail HOWTO</a>.
<li date="200801140"><a name="200801140">Levent Serinol wrote a simple
patch which adds <a
href="http://lserinol.googlepages.com/tcpservermysql.htm">mysql
support to tcpserver.</a></a>
<li>The <a
href="http://cr.yp.to/daemontools.html">daemontools</a> package
monitors, controls, and logs the execution and output of long-running
programs, often called daemons.
<p><a name="200109250">
Tetsu Ushijima wrote <a
href="http://www.din.or.jp/~ushijima/qmail-conf.html">qmail-conf</a></a>,
which creates an appropriate set of files to use daemontools to start
up qmail services.
<li date="20001227"> <a name="20001227">The <a
href="http://cr.yp.to/qmailanalog.html">qmailanalog</a> package
analyzes qmail log files in various ways.</a> Russ Allbery has written
<a
href="http://www.eyrie.org/~eagle/software/tai64nfrac/">tai64nfrac</a>,
which converts the tai64n that daemontools-0.63 produces into the
fractional seconds that qmailanalog expects. Peter Samuel has
implemented the same idea as a <a href="tai64nunix-0.70.patch">patch
to daemontools</a> using Dan's coding style (Jay Soffian also wrote
one substantially similar to Peter's). Finally (hopefully) John Levine
went ahead and fixed qmailanalog to <a href="qmailanalog.patch">accept
tai64n dates</a>.
<li date="200705040"><a name="200705040">Georg Lehner has made <a
href="http://www.magma.com.ni/moin/TipsAnd/QmailAnalog">qmailanalog
better integrated with multilog</a></a>.
<li>The <a
href="http://cr.yp.to/dot-forward.html">dot-forward</a> package
emulates sendmail's .forward file processing.
<li>The <a
href="http://cr.yp.to/fastforward.html">fastforward</a> package
supports forwarding tables under qmail.
<p date="20000718"><a name="20000718">Mirko Zeibig has <a
href="http://www.webideal.de/qmail/">an RPM</a></a> with fastforward
with a .qmail-default and a "standard" /etc/aliases-file in it.
<li>The <a
href="http://cr.yp.to/checkpwd.html">checkpassword</a>
package authenticates users using a generic interface. It is required
by qmail's included POP3 server.
<li>Dan has a checklist for users <a
href="http://cr.yp.to/qmail/sendmail.html">converting from
sendmail to qmail</a>.
<li>Dan has written a <a href="http://cr.yp.to/smtp.html">reference manual for SMTP</a>.
<li>You can't find a more secure DNS server than <a
href="http://tinydns.org/">djbdns</a>. If you thought the DNS was hard
to understand, you're wrong. It's not the DNS that's difficult --
it's just BIND.
<li>If you just want to publish information via the web or ftp and you
don't want to worry about security holes, consider using <a
href="http://publicfile.org/">publicfile</a>.
<li date="200406270"><a name="200406270"><a
href="ezmlm-showctl">ezmlm-showctl</a> prints out the ezmlm
configuration in a readable manner.</a>
</ul>
<p>
</td></tr></table>
</td><td bgcolor="#000000"><img src="1x1.gif" alt="" width=1 height=1></td></tr>
<tr><td colspan=5 bgcolor="#000000">
<img src="1x1.gif" alt="" width=1 height=1></td></tr>
</table>
<p><a href="#index">[index]</a>
<p>
<a name="usersoft"> </a>
<table border=0 cellpadding=0 cellspacing=0>
<tr><td colspan=2> </td>
<td rowspan=3> <b>User-Contributed Software for Qmail</b></td>
<td colspan=2> </td></tr>
<tr><td bgcolor="#000000" colspan=2>
<img src="1x1.gif" alt="" width=1 height=1></td>
<td bgcolor="#000000" colspan=2>
<img src="1x1.gif" alt="" width=1 height=1></td></tr>
<tr><td bgcolor="#000000"><img src="1x1.gif" alt="" width=1 height=1></td>
<td width=25> </td><td width=350> </td>
<td bgcolor="#000000"><img src="1x1.gif" alt="" width=1 height=1></td></tr>
<tr><td bgcolor="#000000"><img src="1x1.gif" alt="" width=1 height=1></td>
<td colspan=3>
<table border=0 cellspacing=5 ><tr><td>
<P>
General software contributed by users and supporters of qmail.
<ul>
<li>Harald Hanche-Olsen has written some code to do <a
href="http://www.math.ntnu.no/~hanche/qmail/dotlock.html"
ver="1.03">dot-locking</a>. Dot-locking is slightly unreliable, so
Dan doesn't support it in qmail.
<li><a href="http://www.qmail.org/cgi-bin/m/[email protected]">Seth
Alves</a> hacked on maildir.module-970707 until it <a
href="ftp://ftp.hungry.com/pub/maildir-imap/">worked</a> (mostly) with
imap-4.1.BETA.
<li>Mattias Larsson wrote a preliminary <a
href="http://www.algonet.se/~mta/maildir.html">patch</a> to IMAP4rev1
which lets it work with Maildirs. David Harris has <a
href="http://www.davideous.com/imap-maildir/">improved</a> that patch
to make a production quality UW-imap server with Maildir support.
And in his turn, <a name="200102220">Herbie has updated the Maildir patch for the latest <a href="http://www.greboguru.org/qmail/">UW IMAP</a> server.</a>
<li>David Summers has a <a
href="http://summersoft.fay.ar.us/pub/qmail">qmail-imap Linux RPM</a>.
This is a version of the IMAP/POP server that works with QMAIL, using
Mattias's patches. The three differences are:
<ol>
<li>Mail is delivered and picked up from ~user/Mailbox
<li>Mail can be delivered and picked up from ~user/Maildir/ (see README.maildir)
<li>CRAM-MD5 authentication has been added to the IMAP server.
</ol>
<li date="19991117"><a name="19991117">
Sam Varshavchik wrote a <a
href="http://www.inter7.com/courierimap/">Maildir-only IMAP server</a>
called Courier IMAP.</a>
<li><a href="http://www.qmail.org/cgi-bin/m/[email protected]">Ali Lomonaco</a> has a <a
href="qfinger.diff">patch for finger</a> so it knows to look in $HOME
for a Mailbox. It was written for the finger from FreeBSD 2.2.2,
which is probably the standard BSD finger.
<li>Giles Lean didn't like the idea of patching majordomo, so
following a suggestion from J.T. Conklin that he found in the list
archives he wrote a <a
href="http://www.nemeton.com.au/majordomo-inject.html">majordomo-inject
script</a> and some documentation on how to use it. Needs Perl 5.004.
<a
href="http://www.qmail.org/cgi-bin/m/[email protected]">Nathan
J. Mehl</a> has thrown together a bourne shell script to automagically
<a href="ftp://ftp.blank.org/pub/misc/addlist.sh">create all of the
necessary aliases</a> for a majordomo list with digests in a Qmail
environment that uses Giles majordomo-inject.
<li><a href="http://www.qmail.org/cgi-bin/m/[email protected]">Julie Baumler</a> is using
UIUC's ph to redirect mail on her mail hub. She wrote a note on how
to <a href="phquery">configure qmail to use ph</a>.
<li><a href="http://www.qmail.org/cgi-bin/m/[email protected]">Russell Nelson</a>'s <A
HREF="checkhomeownership">checkhomeownership</A> script will report on
users who don't own their home directories or Maildirs. This is
important to run before starting up qmail, because sendmail doesn't
care a whit whether the user owns their home directory, but home
directory ownership is how qmail decides if the user exists or not.
If you have a mail hub, and you've botched the home directory
ownership, the users will never be logging into it, so they won't
notice. And you won't notice either, until they run screaming to you
that they haven't gotten the important mail they wanted, and their
correspondent noted that the mail bounced.
<li><A HREF="http://www.qmail.org/cgi-bin/m/[email protected]">David Summers</A> has
some <A
HREF="http://summersoft.fay.ar.us/pub/qmail/qmail-smtp-1.8.tar.gz">perl
scripts</A> that work with maildir2smtp. Now uses APOP-style
authentication.
<li><a href="http://www.qmail.org/cgi-bin/m/[email protected]">Russell Nelson</a>'s <A HREF="newbox">newbox</A> script to create new
maildrops for users who don't have login accounts on their mail server.
<li>Chris Garrigues wrote a program to <a
href="ftp://ftp.foxharp.boston.ma.us/pub/pgf/qmail/mailroute.pl">pretty-print
Received: lines</a>.
<li><a href="http://www.qmail.org/cgi-bin/m/[email protected]">Brian
T. Wightman</a> has written a <a
href="qmail_bounce-0.0alpha6.tar.gz">delayed-mail
notifier</a>.
<li><a href="http://www.qmail.org/cgi-bin/m/[email protected]">Mark Delany</a> has a <a
href="ftp://ftp.mira.net.au/unix/mail/qmail/rmail-0.1.tar.gz">rmail</a>
for people receiving ! addresses via UUCP. It parses ! addresses,
applies a number of simple pattern matching rules to convert them to
FQDN addresses and injects them into qmail.
<a name="eliminate-dups">
<li><a href="http://www.qmail.org/cgi-bin/m/[email protected]">Russell Nelson</a> has a program
to <a href="eliminate-dups">eliminate duplicate messages</a>. It has
two modes of operation -- strict and loose. Strict only eliminates
perfect duplicates, whose only difference is in the Received: lines.
Loose eliminates duplicates that have identical From: Date:,
Message-Id: and body parts.
<li><a
href="http://www.qmail.org/cgi-bin/m/[email protected]">
Peter Samuel</a> has expanded on Russell's program and written a
<a href="http://www.gormand.com.au/peters/tools/qmail/">
duplicate eliminator</a> that uses dbm hash file(s) instead of a text
file. It also has improved exception handling and provisions for sites
without the MD5 perl module.
<li><a href="http://www.qmail.org/cgi-bin/m/[email protected]">Russ
Allbery</a> uses Majordomo with qmail. He has a <a
href="http://www.eyrie.org/~eagle/faqs/mjqmail.html">FAQ</a> on
the subject.
<li>David Harris has a system to only allow hosts who have <a
href="http://www.davideous.com/smtp-poplock/">authenticated via the
POP3 server to relay</a> mail using qmail. This does not require
patching the POP or SMTP servers, but is implemented by two programs
which cleanly interface into the system, and can work with most any
POP or IMAP server.
<li><a
href="http://www.qmail.org/cgi-bin/m/[email protected]">Petr
Novotny</a> wrote an alternative to Russell Nelson's Open-SMTP patch
for checkpassword. His code is a <a href="pam_open_smtp.tar.gz">PAM
module</a> which calls external program to log $TCPREMOTEIP. It
requires a PAM-enabled checkpassword.
<li date="200309190"><a name="200309190">Mark Willcox wrote <a
href="http://www.datahelper.com/download/postpop/">postpop</a>, which
is a simpler SMTP after POP solution.</a>
<li date="200112200"><a name="200112200"> <a
href="http://www.qmail.org/cgi-bin/m/[email protected]">Michele
Beltrame</a> has a tool to <a
href="http://sourceforge.net/projects/qmhandle">view the qmail
queue</a></a> (with colored display), view messages in it and delete
messages. It's very simple and written in Perl.
<li date="200409060"><a name="200409060">Jeremy Kister wrote a <a
href="http://jeremy.kister.net/code/qmqtool/">qmail-queue
manipulation tool</a>.</a>
<li>Keith
Burdis has written <a
href="http://rucus.ru.ac.za/~keith/qmail/">several qmail programs</a>,
including dotqmail2alias, alias2dot, deliver, and compactor/exploder
<li>Eric Huss has released <a
href="http://www.netmeridian.com/e-huss/queue-fix.tar.gz">queue-fix
1.4</a>. It repairs or generates a qmail queue structure. You can
use this to help move your queue location, or if you regenerate the
file system and the inode numbering changes. It will also fix
permissions and ownerships of the files. Eric reports that Matthew
Harrell wrote a <a href="queue-fix-todo.patch">patch to queue-fix</a>
which makes it work with Russ Nelson's <a
href="#big-todo">big-todo</a> patch. Patches upon patches!
<li>Harald Hanche-Olsen has a shell/awk/gnu-find script which <a
href="queue-rename">renames a queue</a> so that it has the right
filenames (corresponding to inodes).
<LI><a name="200107130"> Charles Cazabon wrote <a
href="http://pyropus.ca/software/queue-repair/">queue_repair</a></a>.
queue-repair is a qmail queue diagnostic and repair tool, written in
Python, and licensed under the GPL.
<li><a name="200109040">Peter Samuel has a
qmail-compatible <a href="http://www.gormand.com.au/peters/tools/">
vacation</a> program</a>.
<li>Jason van Zyl has a patch to the cyrus imap server so that it <a
href="http://www.periapt.com/qmail-cyrus/">authenticates out of a
cdb</a> (the same hash format that users/assign uses) instead of
kerberos or /etc/passwd. And he has a perl script that allow you to
enter users into the system and it takes care of updating the
users/assign file, and the cdb file that cyrus is using to
authenticate from.
<li date="20000726"><a name="20000726"> Bruce Guenter wrote <a
href="http://untroubled.org/qlogtools/">qlogtools</a></a>, a set of tools
useful in analyzing or producing logs from qmail and other packages.
<li>Monte Mitzelfelt has a program which <a
href="http://www.gonefishing.org/techstuff/qmLogsort">sorts a qmail
log</a> file by message delivery.
<li date="200101150"><a name="200101150"> Ismail Yenigul has a qmail
log analyzer tool</a> called <a
href="http://www.enderunix.org/isoqlog">IsoQlog</a>.
<li date="20000812"><a name="20000812">
Bruce Guenter wrote his own implementation of the mini-qmail idea</a>,
only his (<a
href="http://untroubled.org/nullmailer/">nullmailer</a>)
has a queue for more reliablity. It supports SMTP and QMQP, so it's a
drop-in replacement for qmail-qmqpc.
<LI><a name="200109280">Eric Hess needed <a
href="http://www.ehuss.org/qmail/qmqpc-timeout.tar.gz">longer timeouts
for qmqpc</a></a>. The timeouts are hard coded in qmail-qmqpc. They
tend to be on the low side (10 seconds to connect, 60 seconds to
read/write). He uses some automated systems with qmqp and sometimes
the servers are overloaded and can't respond in that timeframe.
<li date="200111060"><a name="200111060">Jay Austad has his qmqpc <a
href="random-qmqpc.patch">rotating the server list</a> by a random
amount</a>. This distributes the load over multiple qmqp servers.
<li>There are a number of web interfaces for reading mailboxes:
<ul>
<li>Sam Varshavchik's <a href="http://www.inter7.com/sqwebmail/">sqwebmail</a>.
<li>horde.org's <a href="http://www.horde.org/imp/">IMP</a>. Requires PHP and an IMAP/POP3 server.
<li><a href="http://www.atdot.org/">@.</a>
<li><a href="http://twig.screwdriver.net/">Twig</a>. No frames, no javascript.
<LI date="200105060"><a name="200105060"> <a
href="http://webmail.omnis.ch/omail.pl?action=about">oMail-webmail</a>
is a simple Webmail solution for mail servers</a> based on qmail and
optionally vmailmgr. This a GPL project, maintained by <a
href="mailto:[email protected]">Olivier Müller</a>. The mails are read
directly from Maildirs on the harddisk, which is much quicker than
using protocols like POP3 or IMAP. Other features includes multiple
language support (currently English, French, German and Italian),
folders and addressbook support. oMail is programmed in
Perl. Developers and translators are welcome to subscribe to the <a
href="http://sourceforge.net/mail/?group_id=3658">devel mailing
list</a>.
<li date="200105220"><a name="200105220"> <a
href="http://www.igenus.org/">iGENUS</a> is a chinese webmail
system</a> for perl + qmail + vpopmail + mysql.
<li><a name="200108280"><a
href="http://atmail.com/webmail_client.php">Atmail</a> is a complete
Webmail client</a> for qmail supporting POP3/IMAP accounts. Streamlined
interface supporting Ajax and multiple Webmail templates and themes.
<li><a href="http://www.mintersoft.com">VisualOffice</a> supports Maildir++.
</ul>
<li>Several autoresponders are available:
<ul>
<li>Eric
Huss has written a rate-limited <a
href="http://www.netmeridian.com/e-huss/autorespond.tar.gz">autoresponder</a>.
<a name="200109180"></a><a name="200211270"></a>
<li date="200303050"><a name="200303050">Bruce Guenter updated his <a
href="http://untroubled.org/qmail-autoresponder/">autoresponder</a></a>
based on Eric's design.
</ul>
<li>Vyacheslav Ignatyuk wrote an alpha version of a <a
href="ftp://ftp.ant.ru/pub/qmail/qmail-manager.tar.gz">qmail
manager module</a> for <a
href="http://www.webmin.com">webmin</a>. It's a first alpha version,
so may be unstable.
<li date="19991201"><a name="19991201">
Peter Green has some code to <a
href="http://oss.gospelcom.net">Archive and process log files</a></a>
generated by qmail-send and qmail-smtpd.
<li date="20000418"><a name="20000418"> William E. Baxter has released <a
href="http://www.superscript.com/qtools/intro.html">qtools</a></a>, a
suite of utilities for use in .qmail files. The tools support
applying a filter to a message body, message head, or entire message;
conditional delivery of a message to a Maildir; and configuration of
simple autorepliers.
<li date="20000411"><a name="20000411">
Sam Varshavchik has a local delivery agent</a> called <a
href="http://www.flounder.net/~mrsam/maildrop/">Maildrop</a> that has
a custom filtering language more readable than procmail's.
<li date="20000413"><a name="20000413">Russell Nelson has a program called <a
href="no-alternative">no-alternative</a>, which picks the text/plain
part out</a> of a MIME multipart/alternative message, and forwards it to
$USER-alternative.
<li date="20000810"><a name="20000810"> Russell Nelson and Magnus
Bodin have conspired to write some scripts and documentation to throw
information about <a href="http://x42.com/qmail/mrtg/">qmail into
mrtg</a>.</a>
<li date="200304080"><a name="200304080">Inter7 has their own <a
href="http://www.inter7.com/?page=qmailmrtg7">MRTG</a> configuration</a>
<li date="20000718"><a name="20000718">Chris Dent wrote <a href="Qmail::Queue.pm">Qmail::Queue.pm</a>.</a>
<li date="20000917"><a name="20000917"> <a
href="http://omail.omnis.ch">oMail-admin</a> is a PHP4-based
Web-administration solution</a> for mail servers based on Dan
Bernstein's qmail and Bruce Guenter's vmailmgr.
<li date="20000915"><a name="20000915"> Dru Nelson has an <a
href="http://sourceforge.net/projects/qmfilt/">incoming message
filter</a></a>
<li date="20000915"><a name="20000915"> Dru Nelson has an
administrator's program to <a
href="http://www.redwoodsoft.com/~dru/mailRemove/">remove
queued mail</a></a> that has a certain string in it.
<li><a name="200108220"><a
href="mailto:[email protected]">LinuxMagic</a> has written <a
href="http://www.linuxmagic.com/opensource/qmail/qmail-remove/">qmail-remove</a>
to remove emails from the queue</a>. If they match a string, they are
moved to a temporary directory.
<li date="200101100"><a name="200101100"> Mail2DB -- Store incoming mail
in a PostgreSQL database.</a> <a
href="ftp://ftp.tummy.com/pub/tummy/Mail2DB/">Mail2DB</a> is suitable
for putting in a .qmail/.forward file and will archive e-mail to a SQL
database. Currently, there is only the storage component. This was
written because somone on a LUG list expressed interest in such a
system, but he only knew PHP (which isn't an ideal language for
calling from a .qmail file ;-). Hopefully a user interface will be
forthcoming.
<li date="200101102"><a name="200101102">Russ Nelson has a <a
href="qmtpd-service.tar.gz">qmtpd tarball</a></a> for people using
0.70 or later <a
href="http://cr.yp.to/daemontools.html">daemontools</a> with qmail.
Just drop it into your /service directory, and five seconds later,
you're running qmtpd. Don't forget to set your lowest MX priority to
12801, or all your deliveries will occur using SMTP. This is a
companion to his <a href="#200101101">qmail-remote patch</a>.
<li date="200101190"><a name="200101190"> <a
href="http://vmailadmin.sourceforge.net">Vmailadmin</a> is a web
application that allow your client to administer the pop accounts in
his domain</a>, easily and with security, without the need to contact
ISP staff.
<li date="200101191"><a name="200101191">Alex Kramarov has created <a
href="http://192.117.170.66/qpq.tar">qmail-print-queue</a> to print
the qmail queue contents</a> - it runs on all messages and displayes
the from:, to: and date: headers; can also dump the full header of the
message if ran with "-h" switch (if mess822 is properly installed). It
is useful in conjunction with monitoring tools like qmail-mrtg and
others.
<li><a name="200108310">Andrew Richards has written a set of tools for
managing multiple virtual domains using hashing to distribute maildirs called
<a href="http://free.acrconsulting.co.uk/email/qmh.html">qmail-hashdir</a>.</a>
<li date="200104060"><a name="200104060">Mahlon Smith has written a
general <a href="http://www.martini.nu/misc/newmail.tar.gz">new mail