qmail Digest 11 Nov 2000 11:00:01 -0000 Issue 1180

2000-11-11 Thread qmail-digest-help
qmail Digest 11 Nov 2000 11:00:01 - Issue 1180 Topics (messages 51958 through 52019): Definitive solution for adding X-EnvelopeTo 51958 by: Tristan Graham SMTP Port 51959 by: Kiran 51964 by: Kiran 51965 by: John Steniger 51976 by: Dave Sill 5

RE: Backups ??

2000-11-11 Thread Alexander Jernejcic
hi, Dennis wrote: > How do you backup your users email ? you could have a look at http://www.amanda.org . nice network backup tool with features i do apreciate (backup multiple clients cross networks, tape cycles, AFAIK no gui) bye Alexander

RE: short msg when online

2000-11-11 Thread Alexander Jernejcic
hi, what about a little perl-script? just a quick proposal: open(QJT, "| /var/qmail/bin/qmail-inject -f jakubski\@poczta.arena.pl") or die ("oops error ...\n"); print QJT "To: Your\@Friend.dom\n"; print QJT "From: Me <[EMAIL PROTECTED]>\n", "Subject: I am Online\n",

Re: re-smtp port

2000-11-11 Thread Kiran
Hi, Thanks for that info. I was able to telnet to the particular port after adding the lines in inetd.conf. After this i was able to place the scripts etc for starting qmail automatically while booting. While installing the ucspi-tcp package i reliased that scripts for starting this were not aval

Maildir -- does it work with QPopper (Qualcomm POP3 server)

2000-11-11 Thread Aleksander Rozman - Andy
Hi ! I am trying to convert all my mbox files to maildir format. I am wondering if anyone tried to use maildir with QPopper, QUALCOMM's POP3 server. I am using it from beginning and I like how good it works (now I use 3.0 version), but now I am not sure if it will work with this maildir format. D

Re: Setup Problem & Life With Qmail

2000-11-11 Thread Timothy Legant
On Sat, Nov 11, 2000 at 12:36:47AM -0600, Jeff Lacy wrote: > Hello everyone, > > I am new to qmail, so please forgive my ignorance. I tried to install qmail using >life with qmail under RH7. When I run /etc/rd.d/init.d/qmail, it seems to start >okay. Every 10 seconds something accesses the d

Fw: re-smtp port

2000-11-11 Thread Kiran
Hi, I was just looking into the logs. It gives an error message : tcpserver: fatal: unable to bind: address already used. What could this mean? Kiran - Original Message - From: Kiran <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; Denis Petrov <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Se

Re: relay-ctrl does not work

2000-11-11 Thread Tetsu Ushijima
Oliver Lehmann writes: > After the installation of relay-ctrl I changed the run script of pop3d > from [...] > to > > [...] > sh -c 'exec '\ > 'envuidgid qmaild '\ > 'softlimit ${DATALIMIT+"-d$DATALIMIT"} '\ > '/usr/local/bin/tcpserver '\ > '-vUDRHl0 '\ Don't do that. The checkpassword progr

Re: Maildir -- does it work with QPopper (Qualcomm POP3 server)

2000-11-11 Thread Nathan J. Mehl
In the immortal words of Aleksander Rozman - Andy ([EMAIL PROTECTED]): > > I am trying to convert all my mbox files to maildir format. I am wondering > if anyone tried to use maildir with QPopper, QUALCOMM's POP3 server. I am > using it from beginning and I like how good it works (now I use 3.0 >

Re: relay-ctrl does not work

2000-11-11 Thread Oliver Lehmann
Hi Tetsu, > > '/usr/local/sbin/relay-ctrl-allow' \ > > This line should be: > '/usr/local/sbin/relay-ctrl-allow '\ Thanks for your help.. but: olivleh1@sina> telnet ernie 110 Trying 192.168.168.100... Connected to ernie.sesamestreet.net. Escape character is '^]'. +OK <[EMAIL PROTECTED]> user o

Wanting to move the qmail queue.

2000-11-11 Thread Mark Thomas (Tech14)
Hello 'qmail list, I have a problem with outbound smtp mail. When I installed qmail, I ended up installing some of qmail in /var. Any outbound mail goes to the qmail queue on: /var/qmail/queue/mess. There are 200 subdirectories under mess starting with 0 and working its way up to 199.

Re: Courier

2000-11-11 Thread Matt Harrington
On Fri, Nov 10, 2000 at 01:08:15PM +1300, Jason Haar wrote: > At the very least give maildrop a go. I was a die-hard procmail user for > many years, but was beginning to have too many occassions of procmail > swallowing all the RAM on my workstation to process a large mail message > (procmail does

Script for sending mails to the owners of the accounts

2000-11-11 Thread ravivr
Hi all, Iam running Qmail for our Messaging system with Quota system is implemented for for our POP users.I want to send my users an Email notification (to the owner ) automatically when 80% of his/her quota completes.Is there any script for doing this. Any help will be gratly appreciated. Rgds,

Concurrency of qmail-command

2000-11-11 Thread Ellen Spertus
I'm unable to figure out from the FAQ and man pages how much concurrency there is in local delivery when users have commands in their .qmail-* files. To be concrete, assume the following files are in ~ellen: .qmail-foo | foo .qmail-bar | bar My questions are: 1. If a message arrives for ell

Re: very slow delivery

2000-11-11 Thread Jesse Reynolds
Hi I am having the same problem, where it takes 20 minutes for mail to be delivered, whether it's remote to local, local to remote, or local to local. It seems that indeed the permissions on the trigger file are wrong, mine is: prw--- 1 qmails qmail 0 Oct 23 02:27 /var/qmail/queue/lock

Re: very slow delivery

2000-11-11 Thread Timothy Legant
On Sun, Nov 12, 2000 at 03:13:16PM +1100, Jesse Reynolds wrote: > Hi > > I am having the same problem, where it takes 20 minutes for mail to > be delivered, whether it's remote to local, local to remote, or local > to local. > > It seems that indeed the permissions on the trigger file are wron

perl script acting funny

2000-11-11 Thread Greg Kopp
I have qmail and vpopmail installed on RH 6.2. I have a perl subroutine that we use to send e-mail. Here is the code snipit: sub mailto { $mailprog = '/usr/lib/sendmail'; open(MAIL,"|$mailprog -t"); my @args = @_; print MAIL "To: $args[0]\n"; print MAIL "Bcc: $args[4]\n"; print MA

Re: perl script acting funny

2000-11-11 Thread Russ Allbery
Greg Kopp <[EMAIL PROTECTED]> writes: > I have qmail and vpopmail installed on RH 6.2. I have a perl subroutine that > we use to send e-mail. Here is the code snipit: > sub mailto > { $mailprog = '/usr/lib/sendmail'; >open(MAIL,"|$mailprog -t"); >my @args = @_; >print MAIL "To: $arg