Re: Yet another relay issue with Qmail

2000-02-08 Thread petervd

On Tue, Feb 08, 2000 at 08:55:17AM -, Petr Novotny wrote:
[blah]
> > Why does Qmail treat xxx@sss@ttt addresses differently than it treats
> > xxx@sss addresses when it comes to relaying checks?
> 
> It does not.

Actually, xxx@sss is treated just like that: xxx@sss. But xxx@sss@ttt is
treated like xxx@ttt - qmail-smtpd doesn't care what's before the last '@'.

Greetz, Peter.
-- 
Peter van Dijk - student/sysadmin/ircoper/madly in love/pretending coder 
|  
| 'C makes it easy to shoot yourself in the foot;
|  C++ makes it harder, but when you do it blows your whole leg off.'
| Bjarne Stroustrup, Inventor of C++



Re: Yet another relay issue with Qmail

2000-02-08 Thread Petr Novotny

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 8 Feb 00, at 15:22, Jason Haar wrote:

> I've got Qmail on a DMZ host. No percenthack, good rcpthosts file/etc.
> Relaying of the form "user@remote" to "user@remote2" fails as
> expected. Mail from "user@remote" to "user@[EMAIL PROTECTED]" is
> accepted and passed onto our internal LAN Qmail server.

Why not? I mean, this address should mean "local user 
user@remote2 at our.domain". Unless something is terribly 
misconfigures, user@remote2 is a local username, not a remote 
user at remote2 machine.

> Now the DMZ
> host is on a different subnet than our LAN - so the LAN Qmail server
> thinks the incoming SMTP session is from a foreigner - but it still
> accepts it...

OK, so it accepts it. Does it bounce it, or does it deliver it?

> If I connect from the DMZ host to the interal LAN Qmail server and
> attempt a manual "user@remote" to "user@remote2" - that fails with the
> "no relaying" error. However "user@[EMAIL PROTECTED]" is accepted and
> past onto the appropriate smtproute rule. End result, relaying does
> occur... 

Does it really occur? If yes, we need to see how exactly you pass 
the message from DMZ to LAN. Normal smtproutes forwarding 
does not change the RCPT TO: address, ie. the local LAN server 
still sees "user@[EMAIL PROTECTED]" and bounces it back 
claiming "no such local mailbox user@remote2". Does that not 
happen?

> Why does Qmail treat xxx@sss@ttt addresses differently than it treats
> xxx@sss addresses when it comes to relaying checks?

It does not.

-BEGIN PGP SIGNATURE-
Version: PGP 6.0.2 -- QDPGP 2.60 
Comment: http://community.wow.net/grt/qdpgp.html

iQA/AwUBOJ/oDFMwP8g7qbw/EQKk+wCg4L8VHjBvBnP84gtGaY+T+ehWzY0AoM6u
LIi9vW1HbV2Hr4YWcG94L34P
=VGgB
-END PGP SIGNATURE-
--
Petr Novotny, ANTEK CS
[EMAIL PROTECTED]
http://www.antek.cz
PGP key ID: 0x3BA9BC3F
-- Don't you know there ain't no devil there's just God when he's drunk.
 [Tom Waits]



Re: RELAYCLIENT

2000-02-08 Thread Magnus Bodin

On Tue, Feb 08, 2000 at 10:46:47AM +0600, Md. Sifat Ullah Patwary wrote:
> How can I know whether environment variable RELAYCLIENT is set and what its
> value is?

Where? 
It's major use is in combination with tcpserver. 
Here's a little test daemon that could be used to show the concept:


--%<--- cut here ---
#!/usr/bin/perl
# testd.pl; Magnus Bodin; [EMAIL PROTECTED]

use strict;

while (<>)
{
my $file = "$^T.$$";
open LOG, ">$file" or die "couln't open $file: $!"; 
foreach (sort keys %ENV)
{
chomp;
print LOG "$_ = $ENV{$_}\n";
}
close LOG;
}
--%<--- cut here ---

Here's the contents of tcp.test at a start:

127.0.0.1:allow,RELAYCLIENT=""
:allow

Rebuild tcp.test.cdb like this: 

   tcprules ./tcp.test.cdb ./tcp.test.tmp < ./tcp.test

And start the daemon like this: 

   tcpserver -v -xtcp.test.cdb 0 4000 ./testd.pl & 

telnet to port 4000 from different machines and with different content in
tcp.test.cdb (see manual for tcpserver in ucspi-tcp-package. 

Look in the logfiles for results. 

/magnus

-- 
http://x42.com/



Re: How to setup local delivery for only ONE user?

2000-02-08 Thread Magnus Bodin

On Mon, Feb 07, 2000 at 05:05:20PM -0600, Mike Borowiec wrote:
> Greetings -
> I'm trying to configure QMail to accept and locally deliver mail (using
> /bin/mail on a Solaris 2.6 machine) for only one specific e-mail address,
> and forward ALL other e-mail messages to the Corporate mail hub.
> 
> I'm sure there is probably an easy way to do this, but I cannot seem to
> get it to work. Can anyone offer any suggestions? Thanks!


Local domains

The definition of a "local" maildomain is that all local users (i.e. default
those in /etc/passwd) has a mailadress on the form @. This
will NOT be overridden by any virtual domain with the same name.

As soon as one wants to not deliver all mail for a domain locally it's often
much wiser to make it virtual. The alternative is to divert the mail from
within the users home directories (their .qmail-files).

For doing efficient mail hosting that is easy to maintain and debug, it's
always best to have local delivery of mail to the mailhost. I.e. if your
mailhost is called gandalf.foobar.net, then that very host accepts mail for
that local domain. When splitting domain delivery, it's always easiest to
take advantage of that local mailhost domain delivery. 


One local user, the rest to somewhere else
==

  1. Domain handling

  Put the all the domains in /var/qmail/control/rcpthosts like this:

  foobar.net
  gandalf.foobar.net


  2. Put the domain in /var/qmail/control/virtualdomains:

  foobar.net:alias-foobar

  DO NOT domains in locals if you have them in virtualdomains!


  3. Put the HOSTNAME of the mailhost in /var/qmail/control/locals:

  gandalf.foobar.net


  4. Create local delivering alias

  Now all mail to foobar.net is handled by ~alias/.qmail-foobar-*
  which means that you can create a ~alias/.qmail-foobar-joe and put

  &[EMAIL PROTECTED]

  in this file. This will locally deliver joes mail.
  Repeat this step if you have more aliases that should be delivered
  locally.

  5. Create forwarding alias
  
  You want to forward all other mail to the central mailhub. 
  (Let's assume that host is called biffo.foobar.net)

  Then create a ~alias/.qmail-foobar-default that will handle mail to
  ~alias/.qmail-foobar-* where * is a username.

  Put this line into the file:

  |forward "${DEFAULT}@biffo.foobar.net"

  This will forward [EMAIL PROTECTED] to the central mailhub
  [EMAIL PROTECTED]
  
  

/magnus

--
http://x42.com/


  











> - Mike
> -- 
> --
> Michael Borowiec  -  [EMAIL PROTECTED]  - Tellabs Operations, Inc.
> Lead Engineer, Engineering Software Tools 4951 Indiana Ave., MS 57
> 630-512-8019  FAX: 630-512-7010   Lisle, IL  60532  USA
> --

-- 
http://x42.com/

  \ /  ASCII Ribbon Campaign - Say NO to HTML in email and news   
   x



qmail and ldap

2000-02-08 Thread nsaravanan



Hi all

I am trying to integrate qmail with LDAP. Please provide me details about the
integration steps to be followed.

What LDAP can be used ?

I tried on openldap . I have some problem. Is there any document available on
qmail and ldap integration which lame man like me can understand

Thanks in advance




Qmail and IMAP

2000-02-08 Thread Mullen, Patrick

How do you set up Cyrus IMAPd to work with QMail?  In particular, I
would like to do the "single system UID for all mail accounts" trick as
well as the selective SMTP relaying after authenticating through
POP or IMAP using TCPServer.  The latter I already have by using
the patch to checkpassword, but I'm pretty sure that won't work
with Cyrus so I'll need a new method of implementing it.


Thanks,

~Patrick



Yet another relay issue with Qmail

2000-02-08 Thread Jason Haar

Sigh - I just went through this last month with relay issues between Qmail
and Sendmail - and now I've got the same problem with Qmail to Qmail..

I've got Qmail on a DMZ host. No percenthack, good rcpthosts file/etc.
Relaying of the form "user@remote" to "user@remote2" fails as expected. Mail
from "user@remote" to "user@[EMAIL PROTECTED]" is accepted and passed onto
our internal LAN Qmail server. Now the DMZ host is on a different subnet than
our LAN - so the LAN Qmail server thinks the incoming SMTP session is from a
foreigner - but it still accepts it...

If I connect from the DMZ host to the interal LAN Qmail server and attempt a
manual "user@remote" to "user@remote2" - that fails with the "no relaying"
error. However "user@[EMAIL PROTECTED]" is accepted and past onto the
appropriate smtproute rule. End result, relaying does occur... 

Why does Qmail treat xxx@sss@ttt addresses differently than it treats
xxx@sss addresses when it comes to relaying checks?

Anyone know how this is meant to be worked around? 

-- 
Cheers

Jason Haar

Unix/Network Specialist, Trimble NZ
Phone: +64 3 3391 377 Fax: +64 3 3391 417
   



Maildir --> Procmail

2000-02-08 Thread Muhammad Ali



I have setup my Qmail Server using Procmail to 
deliver mails to /var/spool/mail. I experimented Maildir format. I have 200+ 
users on this machine. Now I wanted to switch back to Procmail. As far as 
Documnetation and my knowledge is concerned, I have made each and every thing to 
bring Qmail to Procmail. But now, QMail always searches for a Mailbox. Amzingly, 
not Maildir and not Procmail. Mailbox 
 
Anyone with some experience or 
opinion


ETRN Patch

2000-02-08 Thread Md. Sifat Ullah Patwary

Where can I find ETRN patch for qmail?

Sifat.



RE: Running Programs in .qmail

2000-02-08 Thread smanjourides

Thanks for the response, Peter. Yes, the "security" of the app is not my
doing (otherwise I wouldn't have this problem at all!). And, yes, I removed
the shell from qmailq almost as soon as I added it.

Unfortunately my problem persists. I was hoping to not cloud this discussion
with our site-specific implementation, but...

We've hacked qmail to not set uid/gid on delivery (actually the recipient
doesn't even have an account on the machine). So, the uid/gid of the process
running the .qmail is indeed qmailq/qmail.

This is why is seems strange that with qmail in the testgrp group it still
complains.

Thanks for the help all the same.

- Scott M

> -Original Message-
> From: Peter Samuel [mailto:[EMAIL PROTECTED]]
> Sent: Monday, February 07, 2000 4:48 PM
> To: [EMAIL PROTECTED]
> Cc: [EMAIL PROTECTED]
> Subject: Re: Running Programs in .qmail
> 
> 
> On Mon, 7 Feb 2000 [EMAIL PROTECTED] wrote:
> 
> > I'm trying to run a program for each email sent to a 
> certain address. So I
> > have a .qmail file in the correct directory, which looks 
> something like
> > this:
> > 
> > |/var/qmail/bin/preline /usr/local/junk/test
> > 
> > The app (/usr/local/junk/test) is very security conscious. 
> It checks itself
> > for permissions, which must be 770 else it complains and 
> doesn't run.
> 
> 770 is not VERY security conscious :)
> 
> > 
> > Lets also say that the app has another requirement of owner/group =
> > test/testgrp. I've placed all the qmail users in the group testgrp
> > (qmaild,qmaill,qmailp,qmailq,qmailr,qmails), so the 770 
> access should be
> > enough for qmail to run the app. I've tested this by giving 
> qmailq a shell
> > and logging in to verify the user has permissions to run the app.
> 
> Bad ideas. By the time a .qmail file is accessed, the effective uid
> and gid have been changed to the user for whom the mail message was
> intended (see the qmail pictures). So making the qmail users (qmaild
> etc) members of group testgrp is not going to help. Also giving qmailq
> a shell is a potential security nightmare - change it back now!
> 
> > 
> > qmail still complains about not being able to access the file.
> 
> The user for whom the mail is destined needs to be in the group
> testgrp to execute the file. It sounds like this is not the case in
> your current environment.
> 
> > 
> > If I change the permissions on the test app to 777, then 
> qmail has no
> > problem, but the security-anal app refuses to run in such a 
> configuration.
> 
> Of course. See above. Also see the qmail pictures again - especially
> the local delivery diagrams.
> 
> > 
> > Has anyone run into such a problem? Does qmail honor group 
> permissions?
> 
> Regards
> Peter
> --
> Peter Samuel[EMAIL PROTECTED]
> Technical Consultantor at present:
> eServ. Pty Ltd  
> [EMAIL PROTECTED]
> Phone: +61 2 9206 3410  Fax: +61 2 9281 1301
> 
> "If you kill all your unhappy customers, you'll only have 
> happy ones left"
> 



multiple qmail instances

2000-02-08 Thread Jiri Rosenmayer


Folks,
 

 I've one question. I need to run multiple instances of qmail. 

I need different behavior of qmail on every interface of our firewall.
On DMZ, there is some postcard system and on this interface I need to
set shorter queuelifetime. On outside interface  I need filter mail
through QMAILQUEUE patch - I need to filter out e-mails with attached .exe
file. Inside interface rewrites some From: lines. 

So, my quetion is ? Can I change qmail root from /var/qmail ??
Is there some other solution for my problem ??

J.


--

Jiri Rosenmayer  e-mail: [EMAIL PROTECTED]
SkyNet a. s. http://www.pgp.cz  
PGP fingerprint: 1907 1F79 CC70 74EE FC55 F649 5651 33A4 50D4 ABB9



Deliveried-To: ?

2000-02-08 Thread smanjourides

Is qmail expected to add a Delivered-To header of the form:

Delivered-To: @.com@.com

?

If this is expeted, why and what meaning does it have?

- Scott



RE: Running Programs in .qmail

2000-02-08 Thread Peter Samuel

On Mon, 7 Feb 2000 [EMAIL PROTECTED] wrote:

> Thanks for the response, Peter. Yes, the "security" of the app is not my
> doing (otherwise I wouldn't have this problem at all!). And, yes, I removed
> the shell from qmailq almost as soon as I added it.
> 
> Unfortunately my problem persists. I was hoping to not cloud this discussion
> with our site-specific implementation, but...
> 
> We've hacked qmail to not set uid/gid on delivery (actually the recipient
> doesn't even have an account on the machine). So, the uid/gid of the process
> running the .qmail is indeed qmailq/qmail.

Then you should have told us from the outset :) Site specific mods are
almost always the cause of the problem. Any reason why you did this?

You can use the /var/qmail/users/assign mechanism to allow non
existant "users" to receive mail as a specified user - alias for
example or some other trusted user. That's the approach I would be
taking to this problem.

Regards
Peter
--
Peter Samuel[EMAIL PROTECTED]
Technical Consultantor at present:
eServ. Pty Ltd  [EMAIL PROTECTED]
Phone: +61 2 9206 3410  Fax: +61 2 9281 1301

"If you kill all your unhappy customers, you'll only have happy ones left"



monitoring w/supervise and logging w/splogger

2000-02-08 Thread Wang-hua Li, Mack

Hi there,

I'm using daemontools-0.61 to monitor the qmail-1.03 processes
running on my mail server but for some reason, I have to use
syslog instead of multilog or qfilelog to do the loggings.
I tried to put something like 

exec splogger qmail

in the ./log/run script file and it seems OK but am still wondering
if there is any potential problem with a configuration like this.

Any idea will be appreciated.

Thanks in advance.

--
W.H Li



qmail-queue

2000-02-08 Thread Keith, Yeung Wai Kin

Happy Lunar New Year

I installed qmail 1.03-9 (rpm) on RH6.1 (2.2.12). I also want to install
qmail-pop3d, qmail-qmqpd, qmail-qmtpd, qmail-utils (rpm) also. when I
install qmail-qmqpd, the rpm ask me to install qmail-queue first by
dependence. anyone know how to install qmail-queue ?

New to Qmail..
Keith



qmail Digest 8 Feb 2000 11:00:01 -0000 Issue 905

2000-02-08 Thread qmail-digest-help


qmail Digest 8 Feb 2000 11:00:01 - Issue 905

Topics (messages 36868 through 36921):

Re: Can I rewrite *@xx to *@yyy?
36868 by: Greg Owen
36889 by: Jason Haar
36919 by: Scott D. Yelich

Relay Again :(
36869 by: Roberto Samarone Araujo
36870 by: Thorkild Stray
36871 by: Lars Balker Rasmussen
36872 by: Russell Nelson
36877 by: Glenn Crownover
36878 by: Dave Sill
36890 by: Russell Nelson

Redirecting messages
36873 by: Director tecnico del Nodo Nicarao -- Juan Navas
36874 by: Häffelin Holger
36875 by: Petr Novotny

Re: Relay Problem
36876 by: David Dyer-Bennet

alert: cannot start: qmail-send is already running
36879 by: Max
36880 by: Dave Sill
36883 by: Max

Re: workaround for port 25 block? (fwd)
36881 by: Brandon Dudley
36884 by: Paul Schinder

will removing "invoked by uid #" break anything?
36882 by: Jim Breton

Setting Up POP3 Account. How?
36885 by: Marvel Carvalho

how do I do this?
36886 by: Bill Parker

Re: ORBS not recommended
36887 by: Jon Rust

Speakeasy DSL (was Re: workaround for port 25 block?)
36888 by: Kai MacTane

Re: "<>" bogus mail from??
36891 by: ari
36892 by: Jeff Hayward

Re: [qmail] Re: "<>" bogus mail from??
36893 by: ari
36894 by: Pavel Kankovsky

Running Programs in .qmail
36895 by: smanjourides.corp.visto.com
36898 by: Peter Samuel
36901 by: smanjourides.corp.visto.com
36903 by: Peter Samuel

How to setup local delivery for only ONE user?
36896 by: Mike Borowiec
36914 by: Magnus Bodin

Re: [qmail] "<>" bogus mail from??
36897 by: ari

Qmail can't find file that is obviously there
36899 by: Ronald Robson

Yet another relay issue with Qmail
36900 by: Jason Haar
36916 by: Petr Novotny
36917 by: petervd.vuurwerk.nl

Deliveried-To: ?
36902 by: smanjourides.corp.visto.com
36906 by: Sam

Web based IMAP4 email software
36904 by: Arumugam Thiruppathi
36905 by: Sam

RH RPM POP3 problemo!!!
36907 by: chupepe

Surely someone has done this...
36908 by: Sean Casey
36909 by: Greg Owen
36910 by: Stephen Mills

ETRN Patch
36911 by: Md. Sifat Ullah Patwary

RELAYCLIENT
36912 by: Md. Sifat Ullah Patwary
36918 by: Magnus Bodin

monitoring w/supervise and logging w/splogger
36913 by: Wang-hua Li, Mack

Maildir --> Procmail
36915 by: Muhammad Ali

dynamic mail queue
36920 by: Shem

qmail-queue
36921 by: Keith, Yeung Wai Kin

Administrivia:

To unsubscribe from the digest, e-mail:
[EMAIL PROTECTED]

To subscribe to the digest, e-mail:
[EMAIL PROTECTED]

To bug my human owner, e-mail:
[EMAIL PROTECTED]

To post to the list, e-mail:
[EMAIL PROTECTED]


--



 Magnus Bodin [mailto:[EMAIL PROTECTED]] wrote:
> On Mon, Feb 07, 2000 at 04:47:21PM +1300, Jason Haar wrote:
> > aliases, and rewrite the remaining from *@xx to *@yy (e.g. 
> > jhaar@xx becomes jhaar@yy). I can't see any way of doing this 
>
> No. There is no rewriting in qmail-queue.

However, check out mess822 at http://cr.yp.to/mess822.html.  

OTOH, if all you want to do is forward (as opposed to rewriting the
headers) then the .qmail recipe Magnus posted is fine.

-- 
gowen -- Greg Owen -- [EMAIL PROTECTED]







On Mon, Feb 07, 2000 at 06:46:59AM +0100, Magnus Bodin wrote:
> | forward "${DEFAULT}@yy"
> 

Absolutely what I was after :-)

Bit of a ba%*tard to find that one in the man pages...

Yippee - can finish the job now... :-)

-- 
Cheers

Jason Haar

Unix/Network Specialist, Trimble NZ
Phone: +64 3 3391 377 Fax: +64 3 3391 417
   




-BEGIN PGP SIGNED MESSAGE-

On Tue, 8 Feb 2000, Jason Haar wrote:
> On Mon, Feb 07, 2000 at 06:46:59AM +0100, Magnus Bodin wrote:
> > | forward "${DEFAULT}@yy"
> Absolutely what I was after :-)
> Bit of a ba%*tard to find that one in the man pages...
> Yippee - can finish the job now... :-)

Qmail's documentation is perfect.

Repeat until you believe.

Scott


-BEGIN PGP SIGNATURE-
Version: 2.6.2

iQCVAwUBOJ/grx4PLs9vCOqdAQESHAQAmn5SyQNOsUNH+V8DQQtOwZwoLJHLuXlq
K7vA+f6IiSakSR/8+JAOOcY+353D2toZ8B3dPLqXqm3s7wk0G2i0fW3NIW5Wbly4
wfmith6y3IvitdOLSGlixYgpYhGsqcKhAUDGqv8MYGlmLoxjbckTvm6WtaoSho87
eBQDh362KsI=
=tOxa
-END PGP SIGNATURE-





> I'm a new qmail user having a problem with relays.  I'm using tcpserver
> with 1 domain in rcpthosts and the following in etc/tcp.smtp
>
> 200.242.253.0:allow,RELAYCLIENT=""
> :allow
> According to what I've read, this should allow only users with
> 200.242.253.*
> to use my server as a relay.  But when I test remotely using
> mail-abuse.org , the test messages
> are allowed through.
> 
>  W

Amavis and Qmail, how?

2000-02-08 Thread Erwin van Kroonenburg


Hi,

Maybe someone can help me with the following problem:

I got a qmail-1.03 mailserver and am trying to use 
amavis-0.2.0-pre6-clm-rl-5 with it. I followed the installation 
instructions from www.unixzone.com/virus and compiled amavis with 
"configure --enable-qmail".
The problem is that everything I send by mail containing a virus passes the 
scanner, so the virus is not detected at all.
I know scanmails works because when I place "|/usr/sbin/scanmails" in 
~/.qmail the virus is detected.
Can anyone who is using the same configuration tell me what to do or how 
you managed to get it to work?

Regards,

Erwin


Telematica International
[EMAIL PROTECTED]
tel: +31-(0)495-547700
fax: +31-(0)495-548411




Re: Running Programs in .qmail

2000-02-08 Thread Peter Samuel

On Mon, 7 Feb 2000 [EMAIL PROTECTED] wrote:

> I'm trying to run a program for each email sent to a certain address. So I
> have a .qmail file in the correct directory, which looks something like
> this:
> 
>   |/var/qmail/bin/preline /usr/local/junk/test
> 
> The app (/usr/local/junk/test) is very security conscious. It checks itself
> for permissions, which must be 770 else it complains and doesn't run.

770 is not VERY security conscious :)

> 
> Lets also say that the app has another requirement of owner/group =
> test/testgrp. I've placed all the qmail users in the group testgrp
> (qmaild,qmaill,qmailp,qmailq,qmailr,qmails), so the 770 access should be
> enough for qmail to run the app. I've tested this by giving qmailq a shell
> and logging in to verify the user has permissions to run the app.

Bad ideas. By the time a .qmail file is accessed, the effective uid
and gid have been changed to the user for whom the mail message was
intended (see the qmail pictures). So making the qmail users (qmaild
etc) members of group testgrp is not going to help. Also giving qmailq
a shell is a potential security nightmare - change it back now!

> 
> qmail still complains about not being able to access the file.

The user for whom the mail is destined needs to be in the group
testgrp to execute the file. It sounds like this is not the case in
your current environment.

> 
> If I change the permissions on the test app to 777, then qmail has no
> problem, but the security-anal app refuses to run in such a configuration.

Of course. See above. Also see the qmail pictures again - especially
the local delivery diagrams.

> 
> Has anyone run into such a problem? Does qmail honor group permissions?

Regards
Peter
--
Peter Samuel[EMAIL PROTECTED]
Technical Consultantor at present:
eServ. Pty Ltd  [EMAIL PROTECTED]
Phone: +61 2 9206 3410  Fax: +61 2 9281 1301

"If you kill all your unhappy customers, you'll only have happy ones left"



Re: Can I rewrite *@xx to *@yyy?

2000-02-08 Thread Scott D. Yelich

-BEGIN PGP SIGNED MESSAGE-

On Tue, 8 Feb 2000, Jason Haar wrote:
> On Mon, Feb 07, 2000 at 06:46:59AM +0100, Magnus Bodin wrote:
> > | forward "${DEFAULT}@yy"
> Absolutely what I was after :-)
> Bit of a ba%*tard to find that one in the man pages...
> Yippee - can finish the job now... :-)

Qmail's documentation is perfect.

Repeat until you believe.

Scott


-BEGIN PGP SIGNATURE-
Version: 2.6.2

iQCVAwUBOJ/grx4PLs9vCOqdAQESHAQAmn5SyQNOsUNH+V8DQQtOwZwoLJHLuXlq
K7vA+f6IiSakSR/8+JAOOcY+353D2toZ8B3dPLqXqm3s7wk0G2i0fW3NIW5Wbly4
wfmith6y3IvitdOLSGlixYgpYhGsqcKhAUDGqv8MYGlmLoxjbckTvm6WtaoSho87
eBQDh362KsI=
=tOxa
-END PGP SIGNATURE-



dynamic mail queue

2000-02-08 Thread Shem

I have a box that dials up to an ISP and disconnects etc etc.
I have followed Doug Vander Woude's documentation on Mail Queue, and it
works a treat, for what it does. But I'm getting greedy now, and I want
things to be a little more dynamic. Instead of the queue being used all the
time and mail sent when the link comes up, I want qmail to send out the PPP
if it is up, or place it in the queue if the PPP is down.

 This way, if I am online for 40-50 mins I wouldn't have to wait for the
link to go down then back up again (as Dougs solution involves the queue
being flushed on ip-up) or I wouldn't have to manually instruct the queue
to be flushed, when the link is up.

Has anybody thought of (and made) a reliable system for this. I came up
with some nasty polling scripts that get run when the PPP is open, sending
the queued mail every 30 second, but I figured the must be a much more
eloquent method.

I'm sure somebody can suggest a method.

Cheers
Shem




Re: Deliveried-To: ?

2000-02-08 Thread Sam

[EMAIL PROTECTED] writes:

> Is qmail expected to add a Delivered-To header of the form:
> 
> Delivered-To: @.com@.com
> 
> ?

Well, normally you expect to see a Delivered-To: [EMAIL PROTECTED]

> If this is expeted, why and what meaning does it have?

The Delivered-To: header is expected, but if you see these kinds of funny
addresses in there, something is seriously fubared in your setup.



-- 
Sam



RH RPM POP3 problemo!!!

2000-02-08 Thread chupepe



I've just installed in a fresh new RedHat 6.0 server, 
qmail-1.03-102.memphis rpm as well as qmail-run-4-4 rpm.
 
After the normal installation i did:
 
chkconfig qmail-pop3.init on
 
POP3 starts all right after reboot, but i can't read my email 
via POP3 client (outlook 4.72.3110.5), funny thing is i can't find a Maildir in 
any new users directory, any help?
 
I know it must be a simple detail i'm missing, but i can't 
figure it out.
 
Thanx in advance.
 
Have a nice day.
 
Ing. José Rodríguez Alarcón


unable to bind

2000-02-08 Thread clifford thurber

Hello,
I just installed  the tcpserver package. I then isssued  the
/etc/init.d/qmail stop command. When I grep for qmail from ps I get no
output. Yet when I go to start qmail under tcp server I get the following
error: 

> tcpserver -x/etc/tcp.smtp.cdb -c400 -u101 -g100 0 smtp
/usr/local/var/qmail/bin/qmail-smtpd &
tcpserver: fatal: unable to bind: address already used

[1] 8963
[1]Exit 111  tcpserver -x/etc/tcp.smtp.cdb -c400
-u101 -g100 0 smtp  ...
>

When I run qmail-qread I see that there are 2000 messages in the queue. I
have attempted to send a kill -14 to qmaild in order to run the queue which
takes a seemignly inordinate amount of time. My question is does mail
sitting in the queue cause the above error message and if so what is the
best way to restart qmail with mail sitting in the queue so that I may bind
to port 25 ?
Thanks in advance.

Clifford Thurber
Web Systems Administrator
LiveUniverse.com
[EMAIL PROTECTED]
565 5th Ave. 29th Fl.
New York, NY 10017
Ph:212 883 6940  (131)
Fax:212 856 9134



RE: Surely someone has done this...

2000-02-08 Thread Stephen Mills

Im running the following :

Internet feed -> qmail -> Exchange (delivered)

and back out again 

Exchange (mail sent from user) -> qmail -> Internet delivery

what I did was, slowly migrate everyone to exchange client (outlook) and
created 2 email address in their profile on exchange ; like [EMAIL PROTECTED]
& [EMAIL PROTECTED]

greg is correct.

in the routing tab in the IMS, I route all "domain.com" back to my qmail
machine (Route to:), this works well becuase any accouts that arent yet on
Exchange will get forwarded back to qmail for delivery, any accounts that
are on exchange will be treated locally and delivered instantly.

I just setup a .qmail for each user to forward messages to exchange using
the [EMAIL PROTECTED] address, once im complete ill add a smtproute
to control/smtproutes 


hope this helps,
Stephen


-Original Message-
From: Greg Owen [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 08, 2000 3:06 PM
To: [EMAIL PROTECTED]
Subject: Re: Surely someone has done this...





>What if an exchange user needs to send mail to a mailbox local to the qmail
>server? I don't know, but maybe I can tell it "If you don't know this local
>address, relay it to the qmail box."


I'd have to doublecheck my systems, but I think that's the default
behavior of Exchange when told to relay.  If it doesn't recognize an SMTP
address, it'll punt it whether it is technically "local" or not.  If I'm
wrong on this, I'll correct myself tomorrow when I'm back in the office.

>But then a bad address in the local domain will always start a mail loop
and
>end up in postmaster.


Yes.  I'm not sure it would go through as many loops as you'd expect,
but I'd have to doublecheck that too.  But I'm not sure I see why that
matters - a bad address is a bounce is a bounce, whether it loops or not.
And since your Exchange servers will be using the Exchange directory for
most local mail users, you'll probably see this very rarely.

In short, I wouldn't lose sleep over this aspect of it.

>I really don't want to split the mail users into subdomains. And I don't
>want to trade email directory info between the two systems (if it has to
>happen, it has to be automatic and immediate ).

>
>So, is this doable with qmail configuration? Has someone done something
>similar?If I have to, I can modify code as needed, but I'd prefer not to
>just to keep things standard here.

With the caveats of the things I want to doublecheck above, you should
be able to do this with a standard configuration.  My config suffers a
little from being legacy (we went from an interim qmail+cyrus system to a
qmail -> exchange system).

I'll take a look tomorrow and comment again.

--Greg





Re: unable to bind

2000-02-08 Thread Vince Vielhaber

On Tue, 8 Feb 2000, clifford thurber wrote:

> Hello,
> I just installed  the tcpserver package. I then isssued  the
> /etc/init.d/qmail stop command. When I grep for qmail from ps I get no
> output. Yet when I go to start qmail under tcp server I get the following
> error: 
> 
> > tcpserver -x/etc/tcp.smtp.cdb -c400 -u101 -g100 0 smtp
> /usr/local/var/qmail/bin/qmail-smtpd &
> tcpserver: fatal: unable to bind: address already used

Something is already using port 25.  Either sendmail or another instance
of tcpserver is running.

Vince.
-- 
==
Vince Vielhaber -- KA8CSHemail: [EMAIL PROTECTED]http://www.pop4.net
   128K ISDN: $24.95/mo or less - 56K Dialup: $17.95/mo or less at Pop4
Online Campground Directoryhttp://www.camping-usa.com
   Online Giftshop Superstorehttp://www.cloudninegifts.com
==





multiple aliases for each user

2000-02-08 Thread Max



Hi,
 
Each user at my company has several e-mail 
aliases (first.last, first_last, Flast, firstL) with our current sendmail server 
that equates to alot of lines in the aliases file.
 
What is the best way to do this on my new 
qmail server? I am worried about the administration time creating all of the 
.qmail- files in ~aliases. Would we see a performance hit if I installed 
dotforward and run some aliases from the aliases file, and the rest as 
.qmail-?
 
Thanks in advance
Maxe. [EMAIL PROTECTED]


Re: RH RPM POP3 problemo!!!

2000-02-08 Thread Mate Wierdl

Have you installed checkpassword?  Also, the Maildirs have to be
created by hand using maildirmake which has to be run by the user.

Also, make sure qmail delivers to ~/Maildir.  Please read carefully
all the README's for the rpms.

Mate
-- 
---
Mate Wierdl | Dept. of Math. Sciences | University of Memphis  



Re: multiple aliases for each user

2000-02-08 Thread Magnus Bodin

On Tue, Feb 08, 2000 at 09:43:36AM -0800, Max wrote:
> Hi,
> 
> Each user at my company has several e-mail aliases (first.last, first_last, Flast, 
>firstL) with our current sendmail server that equates to alot of lines in the aliases 
>file.
> 
> What is the best way to do this on my new qmail server? I am worried about the 
>administration time creating all of the .qmail- files in ~aliases. Would we see a 
>performance hit if I installed dotforward and run some aliases from the aliases file, 
>and the rest as .qmail-?

Go for the fastforward package. It's much faster than plain ol' /etc/aliases
under sendmail.

-- 
http://x42.com/



fetchmail with forcecr option

2000-02-08 Thread Martin Lesser

Looking through man fetchmail I read:

   The 'forcecr' option controls whether lines terminated by LF only are
   given CRLF termination before forwarding.  Strictly speaking RFC821
   requires this, but few MTAs enforce the requirement it so this option
   is normally off (only one such MTA, *qmail*, is in significant use at
   time of writing).

Searching the list-archive I've seen many postings which contain forcecr
as an option in the .fetchmailrc file.

I'am not using this option and qmail works without problems. Furthermore
reading http://cr.yp.to/smtp/request.html I can't see any reason for
using the forcecr option. Dan Bernstein only recommends that servers
should look only for LF.

So my questions are:

- Is the forcecr option obsolet for the use with qmail?
- Have there been problems with fetchmail and qmail without this option?

TIA, Martin



qmail anti-spamming

2000-02-08 Thread Sergio Sagliocco

Is there a way to avoid spamming using SSL and/or certificate X.509?





Re: workaround for port 25 block? (fwd)

2000-02-08 Thread Brandon Dudley


BTW: I work for excite@Home, and just wanted to let you know that the pricing
and service levels and such are set by the cable partners, not by us.

B

> hi,
> 
> actually those rules are very regional. In Rochester it is not against the
> AUP to run web servers, ftp, game servers ... etc. That is of course,
> assuming you are not doing anything illegal. If you are taking up to much
> bandwidth, they will throttle your modem. Period. (having worked there, i
> know how they operate)
> 
> but i did look up the business rates (when i worked there they hadnt started
> offering business service yet) and they wanted roughly $700 a month for the
> same service i get now. sorry, that i will not do.
> 
> 
> brian
> 
> 
> 
> 
> That was one of the reasons given, which I and many other RR people think is
> bogus.
> 
> It is illegal for non-business account users to use servers of any kind and
> if they find out you are (hardly a difficult task), they will terminate your
> service. It's in the terms and conditions.
> 
> The real reason...It's down to money folks.
> 
> Basic service is $49.95p/m, $39.95p/m if you have their cable service.
> 
> To open up the mail server port 25, they will charge you an extra $79.95p/m.
> Want to run a mail, web & ftp server, it's an extra $249.95p/m.
> 
> In fact, I'm looking into DSL to run some stuff, which I'll mention on some
> of Dan's lists, once I put on my firesuit and anchor the chains down  :-)
> 
> Regards...Martin
> --
> ---
> 
> A man will fight harder for his interests than for his rights.
>  -- Napoleon Bonaparte, "Maxims" 1804-1815
> 
> *** End of forwarded message ***
> 
> 
> 
> Regards...Martin
> --
> ---
> 
> After I run your program, let's make love like crazed weasels, OK?
> 
> 
> 
> 



Re: Relay Again :(

2000-02-08 Thread Thorkild Stray

On Mon, 7 Feb 2000, Roberto Samarone Araujo wrote:

> I still didn' find a solution for this problem :( When I Telnet
> to mail-abuse.org , my qmail server accept relays ...

What test does it accept relays on? Is it a confirmed
relay? mail-abuse.org reports success, even though the mail never is
relayed. 

-- 
Thorkild



Re: multiple aliases for each user

2000-02-08 Thread Charles Cazabon

Max <[EMAIL PROTECTED]> wrote:
> 
> Each user at my company has several e-mail aliases (first.last, first_last,
> Flast, firstL) with our current sendmail server that equates to alot of lines
> in the aliases file.

There's another way...
 
> What is the best way to do this on my new qmail server? I am worried about
> the administration time creating all of the .qmail- files in ~aliases.
> Would we see a performance hit if I installed dotforward and run some aliases
> from the aliases file, and the rest as .qmail-?

Try using /var/qmail/users/mailnames (documented briefly in the man page
for qmail-pw2u).

Essentially, it's a lot of lines of the format:
sysaccount:mailalias1[:mailalias2][...]

We use it to set up the same types of aliases here.  qmail-pw2u takes it
into account when it creates the output which you put into 
/var/qmail/users/assign, which is used by qmail-newu to create the cdb file.

Charles
-- 

Charles Cazabon <[EMAIL PROTECTED]>
Any opinions expressed are just that -- my opinions.




RE: Can I rewrite *@xx to *@yyy?

2000-02-08 Thread Matthew Brown

Scott D. Yelich wrote:
> Qmail's documentation is perfect.
>
> Repeat until you believe.

Exactly -- it could not be more terse and still document everything.
Perfect.

;)

-Matt

--
Matt Brown  UNIX Administrator  tickets.com
Phone: (714) 327-5571 --- Email: [EMAIL PROTECTED]



Re: Surely someone has done this...

2000-02-08 Thread Greg Owen



>[I sent a similar message before to [EMAIL PROTECTED] and never saw it. I
>apologise if you've gotten this twice.]


It went through, and mine was the only reply, and it was several days
later.  That's okay, I think both your and my messages are more organized
this time ;>

>I want to set up a two-tiered mail architecture, with a very high uptime
>qmail server at the top, and a less reliable exchange server below (I have
>no choice at all in the latter).


I run this setup.  I prefer to have SMTP<->Internet done by qmail for
security, reliability, performance, and trackability.

>What I'd like the qmail box to do for incoming SMTP mail from the world is
>check to see if user is local, and if not, kick it down to exchange.


All easily enough done - the FAQ has an entry on this, as follows:

]How do I forward unrecognized usernames to another host? With sendmail
]I had a LUSER_RELAY pointing at bigbang.af.mil.
]
]Answer: Put
] | forward "$[EMAIL PROTECTED]"
]into ~alias/.qmail-default.

>But I'd like to tell exchange to use the qmail box as a relay, and this
>introduces the dilemma.
>
>What if an exchange user needs to send mail to a mailbox local to the qmail
>server? I don't know, but maybe I can tell it "If you don't know this local
>address, relay it to the qmail box."


I'd have to doublecheck my systems, but I think that's the default
behavior of Exchange when told to relay.  If it doesn't recognize an SMTP
address, it'll punt it whether it is technically "local" or not.  If I'm
wrong on this, I'll correct myself tomorrow when I'm back in the office.

>But then a bad address in the local domain will always start a mail loop
and
>end up in postmaster.


Yes.  I'm not sure it would go through as many loops as you'd expect,
but I'd have to doublecheck that too.  But I'm not sure I see why that
matters - a bad address is a bounce is a bounce, whether it loops or not.
And since your Exchange servers will be using the Exchange directory for
most local mail users, you'll probably see this very rarely.

In short, I wouldn't lose sleep over this aspect of it.

>I really don't want to split the mail users into subdomains. And I don't
>want to trade email directory info between the two systems (if it has to
>happen, it has to be automatic and immediate ).

>
>So, is this doable with qmail configuration? Has someone done something
>similar?If I have to, I can modify code as needed, but I'd prefer not to
>just to keep things standard here.

With the caveats of the things I want to doublecheck above, you should
be able to do this with a standard configuration.  My config suffers a
little from being legacy (we went from an interim qmail+cyrus system to a
qmail -> exchange system).

I'll take a look tomorrow and comment again.

--Greg





Re: Amavis and Qmail, how?

2000-02-08 Thread Roland Pelzer



>Hi,
>
>Maybe someone can help me with the following problem:
>
>I got a qmail-1.03 mailserver and am trying to use
>amavis-0.2.0-pre6-clm-rl-5 with it. I followed the installation
>instructions from www.unixzone.com/virus and compiled amavis with
>"configure --enable-qmail".
>The problem is that everything I send by mail containing a virus passes the
>scanner, so the virus is not detected at all.
>I know scanmails works because when I place "|/usr/sbin/scanmails" in
>~/.qmail the virus is detected.
Seems that scanmail will not be started in your current configuration. Have
you moved qmail-local / qmail-remote to qmail-local-real an
qmail-remote-real, and added the symbolic links for qmail-local /
qmail-remote to scanmail?

My installation using amavis-0.2.0-pre6-clm-rl-4 runs very smooth.

- Roland



Qmail can't find file that is obviously there

2000-02-08 Thread Ronald Robson

Hello,

I'm fairly new to qmail, but I seemed to get ezmlm working with it quite
well last week without too much trouble. However, our web site hosts
upgraded their server (I'm not certain if qmail was part of the change), but
after the upgrade ezmlm moderation requests fail when they try to send the
approved message:

> Hi. This is the qmail-send program at server.bogus.net.
> I'm afraid I wasn't able to deliver your message to the following addresses.
> This is a permanent error; I've given up. Sorry it didn't work out.
> 
> <[EMAIL PROTECTED]>:
> ezmlm-moderate: fatal: unable to execute
> /web/sites/bogus.com/bin/ezmlm-send
> '/web/sites/bogus.com/qmaildir/news': file does not exist
> ezmlm-moderate: fatal: Fatal error from child

It seems that ezmlm-moderate can't find ezmlm-send. I've checked and
ezmlm-send is exactly where it has always been and it matches the path given
above.

To make things simpler, I created a simple .qmail file apart from ezmlm with
similar results. I put a test script in /web/sites/bogus.com/bin and create
a .qmail that contained '|preline /web/sites/bogus.com/bin/test'. This
message was very similar from this test.

> Hi. This is the qmail-send program at server.bogus.net.
> I'm afraid I wasn't able to deliver your message to the following addresses.
> This is a permanent error; I've given up. Sorry it didn't work out.
> 
> <[EMAIL PROTECTED]>:
> preline: fatal: unable to run /web/sites/bogus.com/bin/test: file does
> not exist

The permissions on both files are the same: 755.

Any help would be much appreciated,

Thanks,

Ron



Re: multiple qmail instances

2000-02-08 Thread Stefan Paletta

Jiri Rosenmayer wrote/schrieb/scribsit:
> So, my quetion is ? Can I change qmail root from /var/qmail ??

This is configured in the conf-qmail file in the source directory.

Stefan



Re: qmail anti-spamming

2000-02-08 Thread Martin A. Brown

Sergio,



First, let me state that I don't think you gain any "real" leverage
against determined spammers by using SMTPS as opposed to SMTP, however,
there are probably far fewer spammers trying to use SMTPS as opposed to
plaintext SMTP, because there are misconfigured SMTP servers all over the
net...so spammers will always look for the easier targets.



You should be able to use stunnel and openssl to generate (and sign) your
own certificates which then wrap the SMTP session in the SSL layer.  The
docs are not plentiful, but should suffice.  stunnel will run quite
happily under tcpserver, by the way...

Typically, SMTPS listens on port 465.

stunnel:  http://mike.daewoo.com.pl/computer/stunnel/
openssl:  http://www.openssl.org/

Best of luck,

-Martin

-- 
Martin A. Brown --- Wonderfrog Enterprises --- [EMAIL PROTECTED]

On Tue, 8 Feb 2000, Sergio Sagliocco wrote:

:Is there a way to avoid spamming using SSL and/or certificate X.509?
:
:
:
:



courier-imapd + vmailmgr

2000-02-08 Thread Steve Kondik

I have started coding an authentication module for courier-imapd to support
vmailmgr style Maildirs.  I'd rather not reinvent the wheel though- if
anyone has already implemented this I'd like to hear about it.

Thanks,
-steve



Re: courier-imapd + vmailmgr

2000-02-08 Thread Barry Smoke

I know the author of vmailmgrd is working on that very thingand I
believe was close to finishingdue to be released in the next version.

check the vmailmgr mailing list.
Barry Smoke

-Original Message-
From: Steve Kondik <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED] <[EMAIL PROTECTED]>
Date: Tuesday, February 08, 2000 5:02 PM
Subject: courier-imapd + vmailmgr


>I have started coding an authentication module for courier-imapd to support
>vmailmgr style Maildirs.  I'd rather not reinvent the wheel though- if
>anyone has already implemented this I'd like to hear about it.
>
>Thanks,
>-steve
>



qmail-imap, cyrus imap, qmail

2000-02-08 Thread Mullen, Patrick

Has any work been done on qmail-imap since 0.02, dated 12 March 1999
at ftp://ftp.qmail.org/imap/  ?  I applied the patch (for qmail-1.02) to
qmail-1.03.  It applied cleanly, largely because what the patch really
did was create two new .c files and modify the Makefile.  It seems
to work, but like the documentation says, that seems to be about it.

Using Netscape, if I tried to read the INBOX., I get the response,
"too many args", which appears to be in the do command (docmd)
function in qmail-imapd.c.  Unfortunately, this is the better of the
results I've gotten.  I suspect this may be due to the bugs in
Netscape's IMAP client that causes other IMAP daemon's to complain.

If qmail-imap is dead, what other options are there?  I've used
Courier IMAP, which supports Maildirs, but it chokes with Netscape
quite often.  I installed and have used cyrus imapd, but I cannot
find anything anywhere on how to make it use Maildirs, or even
make it coexist with qmail effectively.

The ideal solution, I think, would be qmail-imapd because it uses
checkpassword, which I've patched for selective relaying, as
well as its native support for maildir.  It's also pretty cool that
qmail-imapd implemented as a bunch of perl files.  ;)


Thanks,

~Patrick



Qmail & Majordomo

2000-02-08 Thread Andrew Scott

I have just switched my majordomo list over to a new host.  I have found
that when I subscribe a name and address together,  e.g.:

"Andrew Scott" <[EMAIL PROTECTED]>

that there are problems sending out the mail.  I have been told that the
problem is that the host is using qmail instead of sendmail, and that qmail
does not like to see names.  It interprets the whole thing as one address.

1.  Is this true?
2.  If it is, is there a way around it (besides dropping the names from the
list)?

Thank you very much!



courier-imap rpm

2000-02-08 Thread Barry Smoke




Anyone used the  rpm instructions on the 
courier-imap page and gotten them to work?
 
All the files look like they install o.k.but on my RH6.0 
system, I disabled the imap line in my inetd.conf file(in order to get rid of 
the bind: already in use error) because it looks to me like it uses couriertcpd 
to listen on it's own
the start-up script runs...with the right 
messages, but I do a netstatand there's no port 143 being listened 
to...(yes...I'm using netstat -tan for a complete listing.)  I do a ps 
auxand there's no imap process running..
 
Even though the author says there's no need to 
post a rpmit would be nice to have one that's ready to install, and 
runjust by changing the config file.
 
Thanks,
Barry Smoke
 
 


Re: courier-imap rpm

2000-02-08 Thread Barry Smoke

yes...as I said...it doesn't work right out of the box.

I will say that I was impressed about the rpm building straight from the
tarball.but it should also work after installation.

-Original Message-
From: Sam <[EMAIL PROTECTED]>
To: Qmail <[EMAIL PROTECTED]>
Date: Tuesday, February 08, 2000 8:57 PM
Subject: Re: courier-imap rpm


>On Tue, 8 Feb 2000, Barry Smoke wrote:
>
>> Even though the author says there's no need to post a rpmit would
>> be nice to have one that's ready to install, and runjust by
>> changing the config file.
>
>As the instruction say, you build the binary RPM directly from the
>tarball.
>
>
>--
>Sam
>
>
>



Big and/or famous sites using qmail?

2000-02-08 Thread Michael Boman

Wouldn't it great if there was a list of big/famous sites that uses qmail
as their MTA? It would be nice if you need to presuiade your boss that
qmail is a great MTA, as most people say: "Use sendmail, everyone else
using it. It's dafacto standard."

If not on the site, why not send me some examples of sites that uses
qmail?

Best regards
 Michael Boman

-- 
W I Z O F F I C E . C O M   P T E   L T D  -  Your Online Wizard
16 Tannery Lane, Crystal Time Building, #06-00, Singapore 347778
Voice : (65) 844 3228 [ext 118]  Fax : (65) 842 7228
Pager : (65) 92 93 29 49 ICQ : 5566009
eMail : [EMAIL PROTECTED]URL : http://www.wizoffice.com



Re: Big and/or famous sites using qmail?

2000-02-08 Thread Glenn Crownover

Just as an aside, the phrase "everyone else is using it" could also be
considered a downside when taking security into consideration.  The more
something is used, the more hackers know about it.   Just food for thought
(and bosses love hearing about how secure you've made their system!)

--
·.¸¸.·´¯`·. Glenn R. Crownover
·.¸¸.·´¯`·. Owner/CEO - Investor's Network Cafe
·.¸¸.·´¯`·. http://www.investnetcafe.com/
·.¸¸.·´¯`·. reply to: [EMAIL PROTECTED]


Michael Boman wrote:

> Wouldn't it great if there was a list of big/famous sites that uses qmail
> as their MTA? It would be nice if you need to presuiade your boss that
> qmail is a great MTA, as most people say: "Use sendmail, everyone else
> using it. It's dafacto standard."
>
> If not on the site, why not send me some examples of sites that uses
> qmail?
>
> Best regards
>  Michael Boman
>
> --
> W I Z O F F I C E . C O M   P T E   L T D  -  Your Online Wizard
> 16 Tannery Lane, Crystal Time Building, #06-00, Singapore 347778
> Voice : (65) 844 3228 [ext 118]  Fax : (65) 842 7228
> Pager : (65) 92 93 29 49 ICQ : 5566009
> eMail : [EMAIL PROTECTED]URL : http://www.wizoffice.com



Re: Big and/or famous sites using qmail?

2000-02-08 Thread Jacob Joseph

I believe hotmail does use qmail for their outgoing mail...or so I've read
somewhere.

Jacob Joseph

- Original Message -
From: "Glenn Crownover" <[EMAIL PROTECTED]>
To: "Michael Boman" <[EMAIL PROTECTED]>
Cc: "qmail mailing list" <[EMAIL PROTECTED]>
Sent: Tuesday, February 08, 2000 8:10 PM
Subject: Re: Big and/or famous sites using qmail?


> Just as an aside, the phrase "everyone else is using it" could also be
> considered a downside when taking security into consideration.  The more
> something is used, the more hackers know about it.   Just food for thought
> (and bosses love hearing about how secure you've made their system!)
>
> --
> ·.¸¸.·´¯`·. Glenn R. Crownover
> ·.¸¸.·´¯`·. Owner/CEO - Investor's Network Cafe
> ·.¸¸.·´¯`·. http://www.investnetcafe.com/
> ·.¸¸.·´¯`·. reply to: [EMAIL PROTECTED]
>
>
> Michael Boman wrote:
>
> > Wouldn't it great if there was a list of big/famous sites that uses
qmail
> > as their MTA? It would be nice if you need to presuiade your boss that
> > qmail is a great MTA, as most people say: "Use sendmail, everyone else
> > using it. It's dafacto standard."
> >
> > If not on the site, why not send me some examples of sites that uses
> > qmail?
> >
> > Best regards
> >  Michael Boman
> >
> > --
> > W I Z O F F I C E . C O M   P T E   L T D  -  Your Online Wizard
> > 16 Tannery Lane, Crystal Time Building, #06-00, Singapore 347778
> > Voice : (65) 844 3228 [ext 118]  Fax : (65) 842 7228
> > Pager : (65) 92 93 29 49 ICQ : 5566009
> > eMail : [EMAIL PROTECTED]URL : http://www.wizoffice.com
>



Re: qmail-imap, cyrus imap, qmail

2000-02-08 Thread Russell Nelson

Mullen, Patrick writes:
 > Has any work been done on qmail-imap since 0.02, dated 12 March 1999
 > at ftp://ftp.qmail.org/imap/  ?  I applied the patch (for qmail-1.02) to
 > qmail-1.03.  It applied cleanly, largely because what the patch really
 > did was create two new .c files and modify the Makefile.  It seems
 > to work, but like the documentation says, that seems to be about it.

Yup, that's about it.

 > If qmail-imap is dead, what other options are there?  I've used
 > Courier IMAP, which supports Maildirs, but it chokes with Netscape
 > quite often.

I believe that fixing Courier IMAP is the best option.

 > The ideal solution, I think, would be qmail-imapd because it uses
 > checkpassword, which I've patched for selective relaying, as
 > well as its native support for maildir.  It's also pretty cool that
 > qmail-imapd implemented as a bunch of perl files.  ;)

I'm glad you like it, but unless you pick up the cross, nobody's
working on it.

-- 
-russ nelson <[EMAIL PROTECTED]>  http://russnelson.com
Crynwr sells support for free software  | PGPok | "Ask not what your country
521 Pleasant Valley Rd. | +1 315 268 1925 voice | can force other people to
Potsdam, NY 13676-3213  | +1 315 268 9201 FAX   | do for you..."  -Perry M.



Re: Big and/or famous sites using qmail?

2000-02-08 Thread Magnus Bodin

On Wed, Feb 09, 2000 at 12:02:17PM +0800, Michael Boman wrote:
> Wouldn't it great if there was a list of big/famous sites that uses qmail
> as their MTA? It would be nice if you need to presuiade your boss that
> qmail is a great MTA, as most people say: "Use sendmail, everyone else
> using it. It's dafacto standard."
> 
> If not on the site, why not send me some examples of sites that uses
> qmail?

Hotmail (outgoing, as per previous discussion here)
USA.net
Yahoo! mail
Netscape.net webmail (usa.net)

/magnus

-- 
http://x42.com/



Re: qmail-imap, cyrus imap, qmail

2000-02-08 Thread Greg Owen

>If qmail-imap is dead, what other options are there?  I've used
>Courier IMAP, which supports Maildirs, but it chokes with Netscape
>quite often.  I installed and have used cyrus imapd, but I cannot
>find anything anywhere on how to make it use Maildirs, or even
>make it coexist with qmail effectively.


Cyrus uses its own mailbox format, period.  You won't get it to use
Maildirs.  (Of course, unless you feel you truly need direct file access to
the mailbox or must run over NFS, Cyrus format is probably higher
performance)

It will of course exist happily with qmail; it's just a matter of using
the right invocation of 'deliver' in .qmail-default.

-- greg



concurrencyremote

2000-02-08 Thread Benjamin de los Angeles Jr .

Why is it that the maximum number for concurrent remote connections
is 120?  /var/qmail/control/concurrencyremote cannot override this
maximum value.



Re: concurrencyremote

2000-02-08 Thread Anand Buddhdev

On Wed, Feb 09, 2000 at 02:22:40PM +0800, Benjamin de los Angeles Jr . wrote:

120 is a compile-time upper limit imposed on concurrency for
qmail-lspawn and qmail-rspawn. You can raise it to 255 on some systems.
See the file conf-spawn in the qmail source.

> Why is it that the maximum number for concurrent remote connections
> is 120?  /var/qmail/control/concurrencyremote cannot override this
> maximum value.

-- 
See complete headers for more info