Re: [vchkpw] Best way to inject qmail+vpopmail with pop3 domain mailbox

2004-08-27 Thread Frank Rettenbach
Try fetchmail at:
http://catb.org/~esr/fetchmail/
Frank
Michiels Tom wrote:
Hi,
All of my domain mail is delivered to a pop3 mailbox on the internet,
what is the best way to empty this mailbox and inject this in my
qmail+vpopmail system ?
Is there some sort of howto or other doc ?
Thx
Tom



[vchkpw] Re: Re: vmysql:_can't_read_settings_from_ ...

2003-09-25 Thread Frank
Frank [EMAIL PROTECTED] wrote in message
news:[EMAIL PROTECTED]
 Tom Collins [EMAIL PROTECTED] wrote in message
 news:[EMAIL PROTECTED]
  On Sunday, September 21, 2003, at 02:53  AM, Frank wrote:
   That part is very odd.  I'm not sure why it's appending the
   //home/frank,,mydomain.com/ to the path name.  I just rechecked the
   code in vmysql.c, and I can't see how the config file name would fail
   to be built properly.
  
   no idea, either. ktrace/kdump (FreeBSD 4.x) doesn't come
   up with anything useful I can go through (500Mb dump in 10 seconds..)

 I managed to capture a reasonable dump with the vmysql errors.
 Attached is a portion with the errors. I'm not much the programmer, so
 hope you can make something out of it.

 vpopmail-5.3.27
 qmail-1.03 with QMAILQUEUE and TLS patch
 FreeBSD 4.3

 There's 2 things I see:
 #1) qmail-local is complaining, vmysql: can't read settings from
 /home/vpopmail/etc/vpopmail.mysql

  93567 qmail-local NAMI  /home/frank
  93567 qmail-local RET   chdir 0
  93567 qmail-local CALL  open(0xbfbffa48,0,0x1b6)
  93567 qmail-local NAMI  /home/vpopmail/etc/vpopmail.mysql
  93567 qmail-local RET   open -1 errno 13 Permission denied
  93567 qmail-local CALL  write(0x2,0xbfbff320,0x43)
  93567 qmail-local GIO   fd 2 wrote 67 bytes
vmysql: can't read settings from /home/vpopmail/etc/vpopmail.mysql


 Don't get why there's a Permission denied. Qmail-local, which has root,
 is trying to open /home/vpopmail/etc/vpopmail.mysql.

 # ls -l /var/qmail/bin/qmail-local
 -rwxr-xr-x  1 root  qmail  154450 Sep 22 09:02 /var/qmail/bin/qmail-local
 # ls -l /home/vpopmail/etc/vpopmail.mysql
 -rw-r-  1 vpopmail  vchkpw  45 Sep 11 14:16
 /home/vpopmail/etc/vpopmail.mysql

I chmodded /vpopmail.mysql to 644, which got passed the Permission
denied error.
   # chmod 644 vpopmail.mysql

After checking that it got past the error, I noticed that the permissions
were set to root on the ~/etc directory. (Root seems to be the default
after installation ~ bug??)

# pwd
/usr/home/vpopmail
# ls -l
total 6
drwxr-xr-x  2 root  vchkpw  512 Sep 10 11:39 bin
drwxr-xr-x  4 root  vchkpw  512 Sep  7 10:10 doc
drwx--  4 vpopmail  vchkpw  512 Sep 25 06:17 domains
drwxr-xr-x  2 root  vchkpw  512 Sep  7 10:11 etc
drwxr-xr-x  2 root  vchkpw  512 Sep 10 11:39 include
drwxr-xr-x  2 root  vchkpw  512 Sep 10 11:39 lib
#

That explains why vpopmail was getting the error on vpopmail.mysql
located in etc... I chmodded all to vpopmail:

# ls -l
total 8
drwxr-xr-x  2 vpopmail  vchkpw  512 Sep 10 11:39 bin
drwxr-xr-x  4 vpopmail  vchkpw  512 Sep  7 10:10 doc
drwx--  4 vpopmail  vchkpw  512 Sep 25 06:17 domains
drwxr-xr-x  2 vpopmail  vchkpw  512 Sep  7 10:11 etc
drwxr-xr-x  2 vpopmail  vchkpw  512 Sep 10 11:39 include
drwxr-xr-x  2 vpopmail  vchkpw  512 Sep 10 11:39 lib
#

Hope this gets changed in the next release. ;)

 #2 ) You'll see qmail-lspawn, qmail-send, and splogger with the
 appended: /home/frank,,mydomain1.com

  93459 qmail-lspawn GIO   fd 1 wrote 96 bytes
\0Zvmysql: can't read settings from
 /home/vpopmail/etc/vpopmail.mysql
 /home/frank,,mydomain1.com
 \0
  93457 qmail-send GIO   fd 0 wrote 93 bytes

 vmysql:_can't_read_settings_from_/home/vpopmail/etc/vpopmail.mysql//ho\
 me/frank,,mydomain1.com/
  93458 splogger GIO   fd 0 read 93 bytes

 vmysql:_can't_read_settings_from_/home/vpopmail/etc/vpopmail.mysql//ho\
 me/frank,,mydomain1.com/


Still don't know why the vmysql error comes up, but for anyone getting
the same thing, I finally had to delete/recreate the domain(s)  user(s) as
a
workaround:
1. shutdown qmail (as root):
   #/var/qmail/rc stop
2. backup all emails (as root)
   # cd /home/vpopmail/domains/mydomain.com/user1/Maildir/
   # tar -czf /tmp/user1.email.tar.gz  cur new .Sent
   (tar for each user(s))
3. Backup user passwords:
   # mysql -u root -p vpopmail
   mysql SELECT CONCAT(pw_name,@,pw_domain), pw_clear_passwd INTO OUTFILE
'/tmp/vpopuserspasswd.out' FROM vpopmail WHERE pw_name  'postmaster';
4. Delete all the domain(s) (as root).
   # /home/vpopmail/bin/vdeldomain mydomain.com
   (Delete each domain(s))
5. Delete all the lock files in /var/qmail/control and users (as root):
   # rm /var/qmail/control/*.lock /var/qmail/users/*.lock
6. Delete the cdb database (as root)
   # rm /var/qmail/users/cdb
7. Recreate the domain(s) (as root):
   # /home/vpopmail/bin/vadddomain mydomain mypasswd
8. Recreate the users (as root):
   # bash
   $ while read a
do
/home/vpopmail/bin/vadduser $a
done  /tmp/vpopuserspasswd.out
9. Recreate the maildirsize (as vpopmail) especially needed when
using the quota_usage plugin:
   # su - vpopmail
   # bash
   $ for i in `awk '{print $1}' /tmp/vpopuserspasswd.out`
do
/home/vpopmail/bin/vuserinfo $i
done
10. Delete (or save) the /tmp/vpopuserspasswd.out

Tom, if you need anything else (i.e. more trace dumps, or whatever),
let me know.

Frank






[vchkpw] Re: Re: vmysql:_can't_read_settings_from_ ...

2003-09-24 Thread Frank
Tom Collins [EMAIL PROTECTED] wrote in message
news:[EMAIL PROTECTED]
 On Sunday, September 21, 2003, at 02:53  AM, Frank wrote:
  That part is very odd.  I'm not sure why it's appending the
  //home/frank,,mydomain.com/ to the path name.  I just rechecked the
  code in vmysql.c, and I can't see how the config file name would fail
  to be built properly.
 
  no idea, either. ktrace/kdump (FreeBSD 4.x) doesn't come
  up with anything useful I can go through (500Mb dump in 10 seconds..)

I managed to capture a reasonable dump with the vmysql errors.
Attached is a portion with the errors. I'm not much the programmer, so
hope you can make something out of it.

vpopmail-5.3.27
qmail-1.03 with QMAILQUEUE and TLS patch
FreeBSD 4.3

There's 2 things I see:
#1) qmail-local is complaining, vmysql: can't read settings from
/home/vpopmail/etc/vpopmail.mysql

 93567 qmail-local NAMI  /home/frank
 93567 qmail-local RET   chdir 0
 93567 qmail-local CALL  open(0xbfbffa48,0,0x1b6)
 93567 qmail-local NAMI  /home/vpopmail/etc/vpopmail.mysql
 93567 qmail-local RET   open -1 errno 13 Permission denied
 93567 qmail-local CALL  write(0x2,0xbfbff320,0x43)
 93567 qmail-local GIO   fd 2 wrote 67 bytes
   vmysql: can't read settings from /home/vpopmail/etc/vpopmail.mysql
   

Don't get why there's a Permission denied. Qmail-local, which has root,
is trying to open /home/vpopmail/etc/vpopmail.mysql.

# ls -l /var/qmail/bin/qmail-local
-rwxr-xr-x  1 root  qmail  154450 Sep 22 09:02 /var/qmail/bin/qmail-local
# ls -l /home/vpopmail/etc/vpopmail.mysql
-rw-r-  1 vpopmail  vchkpw  45 Sep 11 14:16
/home/vpopmail/etc/vpopmail.mysql

#2 ) You'll see qmail-lspawn, qmail-send, and splogger with the
appended: /home/frank,,mydomain1.com

 93459 qmail-lspawn GIO   fd 1 wrote 96 bytes
   \0Zvmysql: can't read settings from
/home/vpopmail/etc/vpopmail.mysql
/home/frank,,mydomain1.com
\0
 93457 qmail-send GIO   fd 0 wrote 93 bytes

vmysql:_can't_read_settings_from_/home/vpopmail/etc/vpopmail.mysql//ho\
me/frank,,mydomain1.com/
 93458 splogger GIO   fd 0 read 93 bytes

vmysql:_can't_read_settings_from_/home/vpopmail/etc/vpopmail.mysql//ho\
me/frank,,mydomain1.com/

Hope this helps,
Frank


begin 666 vmysql.txt
M/'-N:7 [EMAIL PROTECTED],U-C@6UA:6PM;[EMAIL PROTECTED],3 @8G)E86LH,'@X,#8Q
M,# P*0T*(#DS-38W('%M86EL+6QO8V%L(%)%5 @()R96%K(# -B Y,S4V
M-R!Q;6%I;UL;V-A;!#04Q,(!C:1I[EMAIL PROTECTED][EMAIL PROTECTED]@Y8S [EMAIL 
PROTECTED],U-C@
M6UA:6PM;[EMAIL PROTECTED] @(B]H;VUE+V9R86YK(@T*(#DS-38W('%M86EL
M+6QO8V%L(%)%5 @(-H9ER(# -B Y,S4V-R!Q;6%I;UL;V-A;!#04Q,
M(!O[EMAIL PROTECTED],PP#%B-BD-B Y,S4V-R!Q;6%I;UL;V-A
M;!.04U)( B+VAO;64O=G!OUA:6PO971C+W9P;W!M86EL+FUYW%L(@T*
M(#DS-38W('%M86EL+6QO8V%L(%)%5 @([EMAIL PROTECTED]@97)R;F\@,3,@45R
M;6ESVEO;B!D96YI960-B Y,S4V-R!Q;6%I;UL;V-A;!#04Q,(!WFET
[EMAIL PROTECTED]#(L,'AB9F)F9C,R,PP#0S*0T*(#DS-38W('%M86EL+6QO8V%L($=)
M3R @(9D(#(@=W)O=[EMAIL PROTECTED]@8GET97,-B @( @( B=FUYW%L.B!C86XG
M=!R96%D('-E='1I;F=S(9R;[EMAIL PROTECTED];64O=G!OUA:6PO971C+W9P;W!M
M86EL+FUYW%L#0H@( @( @(@T*(#DS-#4Y('%M86EL+6QS%W;B!2150@
M(!S96QE8W0@,0T*(#DS-#4Y('%M86EL+6QS%W;B!#04Q,(!S:6=PF]C
M;6%S:[EMAIL PROTECTED]#$L,'AB9F)F9F,T8RPP*0T*(#DS-#4Y('%M86EL+6QS%W;B!2
M150@(!S:6=PF]C;6%S:R [EMAIL PROTECTED],T-3D@6UA:6PM;'-P87=N($-!3$P@
M(')E860H,'@S+#!X.# T9#4V,PP[EMAIL PROTECTED](#DS-#4Y('%M86EL+6QS%W
M;B!'24\@(!F9 S(')[EMAIL PROTECTED]@8GET97,-B @( @( B=FUYW%L.B!C
M86XG=!R96%D('-E='1I;F=S(9R;[EMAIL PROTECTED];64O=G!OUA:6PO971C+W9P
M;W!M86EL+FUYW%L#0H@( @( @(@T*(#DS-#4Y('%M86EL+6QS%W;B!2
M150@(!R96%D(#8W+S!X-#,-B Y,S0U.2!Q;6%I;UL[EMAIL PROTECTED],3 @
MVEG')O8VUAVLH,'@R+#!X8F9B9F9C-,L,D-B Y,S0U.2!Q;6%I;UL
M[EMAIL PROTECTED]( @VEG')O8VUAVL@, T*(#DS-#4Y('%M86EL+6QS%W
M;B!#04Q,(!S96QE8W0H,'@T+#!X8F9B9F9C86,L,PP+# [EMAIL PROTECTED],U-C@
M6UA:6PM;[EMAIL PROTECTED]( @=W)I=[EMAIL PROTECTED]O,'@T,PT*(#DS-38W('%M86EL
M+6QO8V%L($-!3$P@(]P96XH,'AB9F)F9F$Q.PP+#!X,6(V*0T*(#DS-38W
M('%M86EL+6QO8V%L($Y!34D@((O=F%R+W%M86EL+W5S97)S+V-D8B(-B Y
M,S4V-R!Q;6%I;UL;V-A;!2150@(!O5N(#,-B Y,S4V-R!Q;6%I;UL
M;V-A;!#04Q,(!LV5E:[EMAIL PROTECTED]#,L,PP#8R,PP+# [EMAIL PROTECTED],U-C@6UA
M:6PM;[EMAIL PROTECTED]( @;'-E96L@,34V.\P#8R, T*(#DS-38W('%M86EL
M+6QO8V%L($-!3$P@(')E860H,'@S+#!X8F9B9F8Y9# L,'@X*0T*(#DS-38W
M('%M86EL+6QO8V%L($=)3R @(9D(#,@F5A9 X()Y=5S#0H@( @( @
M(EQ-+4=8EPP7#!7D),%PP7# [EMAIL PROTECTED],U-C@6UA:6PM;[EMAIL PROTECTED]
M( @F5A9 [EMAIL PROTECTED],U-C@6UA:6PM;[EMAIL PROTECTED],3 @;'-E96LH,'@S
M+# L,'@X8V8L,PP*0T*(#DS-38W('%M86EL+6QO8V%L(%)%5 @(QS965K
M(#(R-34O,'@X8V8-B Y,S4V-R!Q;6%I;UL;V-A;!#04Q,(!R96%D*#!X
M,RPP)F8F9F.60P+#!X.D-B Y,S4V-R!Q;6%I;UL;V-A;!'24\@(!F
M9 S(')[EMAIL PROTECTED]!B71EPT*( @( @()32U$7%Y1/%Q-+6%,%QB7#!
M,(-B Y,S4V-R!Q;6%I;UL;V-A;!2150@(!R96%D([EMAIL PROTECTED]B Y,S4V-R!Q
M;6%I;UL;V-A;!#04Q,(!LV5E:[EMAIL PROTECTED]#,L,PP[EMAIL PROTECTED],PP+# [EMAIL 
PROTECTED],U
M-C@6UA:6PM;[EMAIL PROTECTED]( @;'-E96L@,C T.\P[EMAIL PROTECTED], T*(#DS-38W
M('%M86EL+6QO8V%L($-!3$P@(')E860H,'@S+#!X8F9B9F8Y9# L,'@X*0T

[vchkpw] message is looping mail is looping

2003-09-22 Thread Frank
Is there a solution to stop mail from looping when
addressed to a non-existent user?

qmail -1.03
vpopmail 5.3.27
qmailadmin 1.0.26

I have a very similiar message is looping
mail is looping problem such as this person had:
http://mail-archives.neolug.org/qmail/Nov-2002/0462.html

I have a cron job that sends an email to [EMAIL PROTECTED]
But vpopmail resends it to [EMAIL PROTECTED] and
starts looping. Plus, any spam will mail loop.

Has anyone found a solution or way to find the
solution for it?

Many thanks,
Frank

P.S.
I've tried deleting the domain and recreating it with users:
/home/vpopmail/bin/vdeldomain mydomain.com
/home/vpopmail/bin/vadddomain mydomain.com mypass
/home/vpopmail/bin/vadduser [EMAIL PROTECTED] mypass

Same thing. A email addressed to a non-existent user
will mail loop.

I've tried making a user in qmailadmin the catchall.
Same thing. The email addressed to a non-existent user
will still mail loop.






[vchkpw] Re: message is looping mail is looping

2003-09-22 Thread Frank
 Is there a solution to stop mail from looping when
 addressed to a non-existent user?

 qmail -1.03
 vpopmail 5.3.27
 qmailadmin 1.0.26

 I have a very similiar message is looping
 mail is looping problem such as this person had:
 http://mail-archives.neolug.org/qmail/Nov-2002/0462.html

 I have a cron job that sends an email to [EMAIL PROTECTED]
 But vpopmail resends it to [EMAIL PROTECTED] and
 starts looping.

I'd like to note that my /var/qmail/control/virtualdomains file
had these lines:
mydomain.com:mydomain.com
mydomain2.com:mydomain2.com

But I tried inserting my system account with this change
in /var/qmail/control/virtualdomains file:
mydomain.com:frank
mydomain2.com:frank
mydomain.com:mydomain.com
mydomain2.com:mydomain2.com

But now all the non-existent accounts gets sent to my
system account frank (i.e. /etc/passwd) into my Maildir
(/home/frank/Maildir/), instead of my vpopmail user
account [EMAIL PROTECTED]
(i.e. /home/vpopmail/domains/mydomain.com/frank)

And all correct emails addressed to me, [EMAIL PROTECTED]
gets sent to my vpopmail user account
(/home/vpopmail/domains/mydomain.com/frank/Maildir).

At least I stopped the mail loops, but still how do you get emails
addressed to non-existent accounts to go to the vpopmail user
account, instead of system account?

Many thanks,
Frank






[vchkpw] Re: Re: vmysql:_can't_read_settings_from_ ...

2003-09-22 Thread Frank
 What happens when you run `strings ~vpopmail/bin/vdelivermail | grep
 vpopmail.mysql`?

 You should get a single line with vpopmail.mysql on it.

That's exactly what I get:
# strings vdelivermail | grep vpopmail.mysql
vpopmail.mysql
#

  vmysql: sql error[1]: Can't create database 'vpopmail'. Database exists

 Did you work out your problems with the vpopmail.mysql file?

Yes. I don't seem to be getting that sql error anymore. BTW,

# pwd
/usr/home/vpopmail/etc
# ls -l vpopmail.mysql
-rw-r-  1 vpopmail  vchkpw  45 Sep 11 14:16 vpopmail.mysql
# cat vpopmail.mysql
localhost|0|vpopmailuser|vpoppasswd|vpopmail
#


 Again, I'm not sure where the weird filenames are coming from
 (/home/vpopmail/domains/mydomain.com,,mydomain.com).

 What does the .qmail-default file look like for mydomain.com?

# pwd
/usr/home/vpopmail/domains/mydomain.com
# cat .qmail-default
| /home/vpopmail/bin/vdelivermail ''
/home/vpopmail/domains/mydomain.com/frank

Noting: I've sed 's/myactualdomain.com/mydomain.com'


Thanks Tom for continuing to look into this. I think I migh have
something that might help...

I deleted my domain (/home/vpopmail/bin/vdeldomains mydomain.com)
and recreated it (/home/vpopmail/bin/vadddomain mydomain.com pass).
It wiped out everything under the /home/vpopmail/domains/mydomain.com
directory, including some important emails. But at least no more
vmysql:_can't_read_settings_from... error anymore.

But emails to non-existent accounts were mail looping endlessly. Trying
to stop it, I decided to backup my new important emails this time:
# cd /home/vpopmail/domains/mydomain.com/frank/Maildir
# tar -czf /tmp/myemails.tar.gz cur new

And deleted the domain and recreated it with my user again:
# /home/vpopmail/bin/vadeldomain mydomain.com
# /home/vpopmail/bin/vadddomain mydomain.com pass
# /home/vpopmail/bin/vadduser [EMAIL PROTECTED] pass

Then restored my important emails.
# cd /home/vpopmail/domains/mydomains.com/frank/Maildir
# tar -xzf /tmp/myemails.tar.gz

I noted that the queue name format didn't look like every other because
I moved queues around. I had moved emails in my system account's
Maildir to my vpopmail user account's Maildir:

# mv /home/frank/Maildir/new/*
/home/vpopmail/domains/mydomain.com/frank/Maildir/new/*

I looked at the emails (which moved everything in new to cur). Now those
email name formats don't have quite the same format:
# ls -l cur new
cur:
total 176
-rw---  1 vpopmail  vchkpw2314 Sep 23 03:41
1063608441.18859.www.mydomain.com:2,S
-rw---  1 vpopmail  vchkpw2441 Sep 23 03:41
1063777535.26975.www.mydomain.com:2,S
-rw---  1 vpopmail  vchkpw1367 Sep 18 01:14
1063815291.28928.www.mydomain.com,S=1328:2,RS
-rw---  1 vpopmail  vchkpw1384 Sep 18 08:46
1063842377.79354.www.mydomain.com,S=1345:2,RS
-rw---  1 vpopmail  vchkpw1626 Sep 18 08:49
1063842558.79572.www.mydomain.com,S=1587:2,S
-rw---  1 vpopmail  vchkpw  132134 Sep 18 12:17
1063855052.93458.www.mydomain.com,S=132095:2,RS
-rw---  1 vpopmail  vchkpw3577 Sep 18 13:37
1063859866.98209.www.mydomain.com,S=3538:2,RS
-rw---  1 vpopmail  vchkpw2615 Sep 19 09:03
1063929803.61907.www.mydomain.com,S=2576:2,RS
-rw---  1 vpopmail  vchkpw5691 Sep 21 03:10
1064081408.82962.www.mydomain.com,S=5652:2,S
-rw---  1 vpopmail  vchkpw2256 Sep 22 17:46
1064220386.86347.www.mydomain.com,S=2217:2,RS
-rw---  1 vpopmail  vchkpw1980 Sep 23 01:42
1064248923.87123.www.mydomain.com,S=1941:2,S
-rw---  1 vpopmail  vchkpw1601 Sep 23 01:52
1064249545.87168.www.mydomain.com,S=1562:2,S

After all that, when I send myself a email: [EMAIL PROTECTED],
I get the same error in /var/log/maillog:
Sep 23 04:13:32 www qmail: 1064258012.943110 starting delivery 5: msg 468246
to
local [EMAIL PROTECTED]
Sep 23 04:13:32 www qmail: 1064258012.943985 status: local 1/10 remote 0/20
Sep 23 04:13:32 www qmail: 1064258012.954235 delivery 5: deferral:
vmysql:_can't
_read_settings_from_/home/vpopmail/etc/vpopmail.mysql//home/frank,,mydomain.
com/
Sep 23 04:13:32 www qmail: 1064258012.954616 status: local 0/10 remote 0/20

And the email I sent myself stays in /var/qmail/queue :
# pwd
/var/qmail/queue
# find . -type f
./mess/12/468246
./info/12/468246
./local/12/468246
./lock/tcpto
./lock/sendmutex


Can moving old emails into vpopmail's Maildirs cause this?
Does vpopmail keep track of mail queue numbers?
Sorry if these are dumb questions, but I've been up all
night and nothing is going clicking anymore...

Frank






[vchkpw] vmysql:_can't_read_settings_from_ ...

2003-09-17 Thread Frank
Hi. This is my first post ever to a news group. Please go easy on me.

Vpopmail 5.3.27
qmail 1.03
courier-imap 2.1.1
squirrelmail 1.4.1

When I send an email to myself: [EMAIL PROTECTED] , the email stays in
the /var/qmail/queue directory. And /var/log/maillog shows the following
error message:

Sep 17 18:23:01 www qmail: 1063790581.509670 starting delivery 6: msg 468247
to l
ocal [EMAIL PROTECTED]
Sep 17 18:23:01 www qmail: 1063790581.510487 status: local 1/10 remote 0/20
Sep 17 18:23:01 www qmail: 1063790581.520673 delivery 6: deferral:
vmysql:_can't_
read_settings_from_/home/vpopmail/etc/vpopmail.mysql//home/frank,,mydomain.c
om/

vmysql is obviously looking at something that doesn't exist.

There is a file:
/home/vpopmail/etc/vpopmail.mysql with the following permissions:

-rw---  1 vpopmail  vchkpw  98 Sep 10 09:44 vpopmail.mysql

Is that a bug? Could someone help me out? I've run out of troubleshooting
ideas. :(

Thank you,
Frank






RE: [vchkpw] Inter7 mail server doesn't have reverse DNS!

2003-03-27 Thread Frank Tanner III
It is becoming more and more prevalent that ISPs are
denying recipt of e-mails that do not have a reverse
DNS on their e-mail domains.  Mainly because of so
many spammers using forged headers.

--- Nick Harring [EMAIL PROTECTED] wrote:
 We currently run our hosted systems requiring
 reverse DNS and haven't really
 had any complaints about mail not being received.
 While there's no rule
 requiring reverse DNS, systems without it are much
 more likely to be spam
 originators in my experience with our system. The
 few systems I've come
 across that legitimately send mail but had broken
 reverse DNS were more than
 happy, and able, to fix it quickly and understood
 immediately the point of
 rejecting connections on such a condition.
 
 Nicholas Harring
 System Administrator
 Webley Systems, Inc
 877-609-4795
 
 
 -Original Message-
 From: Andrew Kohlsmith
 [mailto:[EMAIL PROTECTED]
 Sent: Thursday, March 27, 2003 9:47 AM
 To: [EMAIL PROTECTED]
 Subject: Re: [vchkpw] Inter7 mail server doesn't
 have reverse DNS!
 
 
  You'll be losing a lot more legit mail than just
 this list if you do
  that.
 
 Agreed.  There is no rule that demands reverse DNS. 
 It's a nicety and
 that's 
 it.
 
 Regards,
 Andrew
 




[vchkpw] Autoresponder compile problem

2003-01-30 Thread Frank A
I tried serarching the Archive for this and have not found any solutions.

I have a FreeBSD machine and when I type make in the autoresponder 2.0.2
directory I get this error right away.

gcc -Wall -o autorespond autorespond.c
autorespond.c:381: conflicting types for `strcasestr'
/usr/include/string.h:86: previous declaration of `strcasestr'

What is the the correct solution for this problem so that I can complete the
compile process and install it.

Thanks

Frank







[vchkpw] Vpopmail installation

2003-01-13 Thread Frank A
Hello All:

I installed Qmail today with Vpopmail.  The thing is I use Postfix for my
SMTP server and still want to.  I have Postfix configured to send mail to
Qmail's sendmail program like was shown on the inter7 website.  I just use
transport maps instead of fallback transport.  Either way, the mail comes
into Postfix and I see it being sent to qmail, but never gets delivered.  I
checked the qmail queue directory and I found the mail sitting in the todo/
directory.

My question is how do I start up Qmail to just run the queue and not have
it try and bind to port 25.  I want Postfix to remain bound to port 25 and
act as my SMTP server.  I just need Qmail to deliver mail to the
vpopmail/domains/whatever Maildir's so people can get their mail.

Please let me know what I need to startup Qmail do accomplish what I need.
Maybe, as soon as I get used to Qmail, I may use it to do all my mail
services.  I have just been using Postfix for so many years that I do not
want to stop using it to accept mail just yet.  I love the Virtual Mail
though, vpopmail is fantastic..

Thanks for you help in advance..

Frank






[vchkpw] ucspi-tcp-0.88-mysql.patch

2002-11-06 Thread Frank Stars
Hi,

i've a Problem with the tcpserver-mysql-patch. 

The patched tcpserver is installed and running with the -S option. It
looks like it reads the /var/qmail/control/sql - file. (When I change the
filename there is an error in the smtpd-logfile...)

My IP-Adress is in the mysql-db after I do pop3. But I can't relay.

I've installed the same on a test-system 2 weeks ago. There it works fine.
I've installed exactly the same, I think.

Do you have any hint?

Thanks,
Frank





Stupid Question

2001-10-25 Thread Frank Tanner

I know this is probably a stupid question, and I am probably going to get
flamed to death for it, but I am going to ask it anyway.

How, using the vipmap do you assign an IP address to a domain?  The vipmap
command has only one parameter.  From what I can tell the command syntax is:
vipmap [options] ip_domain.  This doesn't make sense if my server has, say,
5 domains and I want to assign each of them their own IP.  According to what
I can see there's no way to do this.  Wouldn't it make more sense to have
the command syntax like: vipmap [options] ip_address mail_domain?  What am I
missing?



Re: having trouble w/ vQregister install

2001-03-08 Thread Frank Precissi

I had the same problem.  I think the scripts calls the qmail-remote 
script (since it sends the conformation e-mails to outside e-mail 
servers, but not to any domains locally hosted on the machine) instead 
of injecting straight into the queue.

Just a guess.. :)

Frank

Michael23 wrote:

 Hello...
 I'm running:
 --
 qmail-1.03
 sqwebmail-1.2.4
 qmailadmin-0.42
 vpopmail-4.9.8
 
 and I'm trying to install vQregister..
 The software installs ok...
 the mail accounts are created...
 I can see them in qmailadmin...
 the only thing is, it is not sending out the e-mail confirmations...
 I have Verify on in the config file...
 
 I'm pretty new to qmail in general...
 am I missing something?
 
 after registering I get the basic confirmation screen...
 but no e-mail is sent.
 
 Any ideas...
 
 Thanks,
 [EMAIL PROTECTED]