open-smtp woes

2000-11-08 Thread Robin S. Socha
Dear all, I just installed open-smtp by Russ Nelson. It does Not Work(tm). The tcprules-file gets overwritten as expected (?), but there are '"' missing: (root@kens):(~)$ cat /etc/tcprules.d/qmail-smtpd 212.84.219.13:allow,RELAYCLIENT= To the effect that: (root@purgatory):(~)# fetc

Re: open-smtp woes

2000-11-08 Thread James T. Perry
Hi Robin, "Robin S. Socha" wrote: Dear all, I just installed open-smtp by Russ Nelson. It does Not Work(tm). The tcprules-file gets overwritten as expected (?), but there are '"' missing: (root@kens):(~)$ cat /etc/tcprules.d/qmail-smtpd 212.84.219.13:allow,RELAYCL

Re: open-smtp woes

2000-11-08 Thread Robin S. Socha
* James T. Perry [EMAIL PROTECTED] [001108 12:03]: It seems like the script called pop3-record is missing back-slashes to escape double quotes. (actually, it contains no double quotes ;) #!/bin/sh echo "$TCPREMOTEIP:allow,RELAYCLIENT=//" /etc/smtp.filter.newer cat /etc/smtp.filter.*

Re: open-smtp woes

2000-11-08 Thread Charles Cazabon
Robin S. Socha [EMAIL PROTECTED] wrote: fetchmail: POP3 /usr/local/bin/pop3-record: 1: Syntax error: Unterminated quoted string [...] # First see if $TCPREMOTEIP is handled by existing rules tcprulescheck $TCPDIR/qmail-smtpd.cdb ``$TCPREMOTEIP'' | \ grep RELAYCLIENT /dev/null exit 0 echo

Re: open-smtp woes

2000-11-08 Thread Gerry Boudreaux
Check to make sure that the patch to checkpassword inserted the line: char *opensmtp = "/usr/local/bin/pop3-record"; Correctly, the error looks like it is coming from the call *to* pop3-record from checkpassword, not pop3-record itself (Hoping I am guessing correctly) Gerry At 01:48 PM

Re: open-smtp woes

2000-11-08 Thread Ricardo Cerqueira
On Wed, Nov 08, 2000 at 01:48:55PM -0500, Robin S. Socha wrote: echo ``$TCPREMOTEIP''':allow,RELAYCLIENT=\"\"" $TCPDIR/smtp.filter.newer Open 2 backticks, close with 3 quotes, 2 escaped double-quotes and yet another double-quote? how about: echo "$TCPREMOTEIP:allow,RELAYCLIENT=\"\""

Re: open-smtp woes

2000-11-08 Thread Robin S. Socha
* Ricardo Cerqueira [EMAIL PROTECTED] writes: Open 2 backticks, close with 3 quotes, 2 escaped double-quotes and yet another double-quote? Sure ;-) It's all Mirko's fault, anyway: (root@kens):(/opt1/Qmail)$ cat open-smtp/pop3-record-alternative From: Mirko Zeibig [EMAIL PROTECTED

Re: open-smtp issues (is anyone is using this?)

2000-09-26 Thread Charles Cazabon
andy [EMAIL PROTECTED] wrote: 1) I'm trying to implement open-smtp. Open-smtp uses a database generated by pop3 logins to set Relayclients (among other things). I would also like to use a standard static database of Relayclients in conjunction with this. How would I get remote mail users

Re: open-smtp issues (is anyone is using this?)

2000-09-26 Thread andy
andy [EMAIL PROTECTED] wrote: 1) I'm trying to implement open-smtp. Open-smtp uses a database generated by pop3 logins to set Relayclients (among other things). I would also like to use a standard static database of Relayclients in conjunction with this. How would I get remote mail

Re: open-smtp issues (is anyone is using this?)

2000-09-26 Thread Charles Cazabon
andy [EMAIL PROTECTED] wrote: However, you could also avoid the problem entirely, and use the excellent relay-ctrl package from Bruce Guenter, which does exactly this, and works well. See http://em.ca/~bruceg/relay-ctrl/ for more. Thanks for the advice Charles. I've looked in

An open-smtp question

2000-09-22 Thread andy
Hey All, Just started to implement open-smtp4 package from Russel Nelson. Everything seems fine, I patched checkpassword, installed tcpcontrol, the \etc\smtp.filter.newer file is getting updated. However, (there is always a however) myremote users still can't send mail after

Help please with a simple problem open-smtp code

2000-09-01 Thread Rob Havens
Using the pop3-record-alternative under RedHat Linux 6.0 (2.2-15) and qmail-1.03 "memphis" rpm's, getting an error: There was a problem logging onto your mail server. Your Password was rejected. Account: 'mail.newman.com', Server: 'mail.newman.com', Protocol: POP3, Server Response: 'tcprules:

Russ Nelson's open-smtp patch

1999-09-15 Thread Michael
Can anyone explain how to install Russ Nelson's open-smtp patch for qmail? I am interested in patching my qmail installation to allow relaying for POP3 authenticated users. I have downloaded the code, but the README just says to patch checkpassword, but I am unfamilar with patching programs

RE: Russ Nelson's open-smtp patch

1999-09-15 Thread David Harris
Vince Vielhaber [mailto:[EMAIL PROTECTED]] wrote: An easier way than patching is to use David Harris' smtp-poplock. I just installed it here and it looks like it's gonna work so I can do the last step in the installation :) http://www.davideous.com/smtp-poplock/ The main advantage of

Re: Russ Nelson's open-smtp patch

1999-09-15 Thread Mirko Zeibig
-0.81 Issue the following command: patch ../open-smtp/checkpassword.patch Make checkpassword as per usual. Here is a slightly improved script for /usr/local/bin/pop3-record: #!/bin/sh TCPDIR=/etc/tcprules.d SMTPRULES=$TCPDIR/qmail-smtpd PATH=$PATH:/usr/local/bin/ # First see if $TCPREMOTEIP

Open-SMTP

1999-08-23 Thread Mirko Zeibig
Hello everybody, I modified Russel's package a bit, my version of pop3-record: snip /usr/local/bin/pop3-record #!/bin/sh TCPDIR=/etc/tcprules.d PATH=$PATH:/usr/local/bin/ # First see if $TCPREMOTEIP is handled by existing rules tcprulescheck $TCPDIR/qmail-smtpd.cdb "$TCPREMOTEIP" | grep

open smtp performance

1999-05-21 Thread Krzysztof Dabrowski
i have a little question regarding open smtp's performance under heavy load. Running a separate shell process and then recreate tcprules for every pop3 connection looks like an overkill for me. We have a 3000+ users serer here and we HAVE to implement some kind of authentication before relaying

Re: open smtp performance

1999-05-21 Thread Timothy L. Mayo
I am using Russel Nelson's POP3 before SMTP very successfully here on a single server handling 10,000 users. I had to modify it slightly though. My tcprules update code makes sure that I have not already got a rule that covers the new IP before adding it. This works well and I will be

Re: open smtp performance

1999-05-21 Thread Krzysztof Dabrowski
At 11:14 99-05-21 -0400, you wrote: I am using Russel Nelson's POP3 before SMTP very successfully here on a single server handling 10,000 users. I had to modify it slightly though. My tcprules update code makes sure that I have not already got a rule that covers the new IP before adding it.

RE: Qmail and Open-SMTP

1999-04-27 Thread Gordon Smith
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 - -Original Message- From: Russell Nelson [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 27, 1999 3:44 PM To: Qmail List (E-mail) Subject: Re: Qmail and Open-SMTP Gordon Smith writes: I have been trying, rather unsuccessfully, to get

RE: Qmail and Open-SMTP

1999-04-27 Thread Russell Nelson
Gordon Smith writes: Checkpassword is patched with the PAM diffs and the Open-smtp patch. Had no probs compiling. /etc/tcp.smtp.filter.newer isn't being updated though. Did you install /usr/local/bin/pop3-record ? Is it marked executable? -- -russ nelson [EMAIL PROTECTED] http

Qmail and Open-SMTP

1999-04-26 Thread Gordon Smith
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I have been trying, rather unsuccessfully, to get open-smtp working over the last few days. My problem is that I have quite a few users that travel world-wide, and they connect to our company using various ISPs. The mail server is based on RedHat

Re: Qmail and Open-SMTP

1999-04-26 Thread Russell Nelson
Gordon Smith writes: I have been trying, rather unsuccessfully, to get open-smtp working over the last few days. /usr/src/smtp-poplock/relaylock \ What is this doing here? tcpserver 0 110 /var/qmail/bin/qmail-popup mailserver.mydomain.com \ /bin/checkpassword /var/qmail/bin

Open-SMTP for PAMified systems

1999-01-12 Thread Petr Novotny
Hi, I have written a PAM module which can be used for Open-SMTP type of treatment instead of patching checkpassword. I have mailed it to Russell Nelson and I hope it would appear soon on www.qmail.org. Meanwhile, I can send it to you by e-mail if you ask me (privately!). -- Petr Novotny, ANTEK