Angel Noriega | 2 Feb 2011 03:19
Picon

pregunta

Tengo instalado el qmail-ldap, pero no consigo hacer funcionar el
spamassassin. alguién puede ayudarme

--

-- 
ING. Angel Noriega
Administrador de Tecnología
Unidad de Informática
Sección de Redes
0291-6400110-6400195-6415767

“No es la especie más fuerte la que sobrevive, ni la más inteligente, sino
la que responde mejor al cambio”
CHARLES DARWIN

Leandro | 3 Feb 2011 13:22
Picon
Favicon

Re: pregunta

Angel, hacer funcionar el spamassassin de manera independiente y luego utilizar
mediante qmail-scanner

Saludos.

----- Original Message ----- 
From: "Angel Noriega" <anoriega <at> ipm.upel.edu.ve>
To: <qmail-ldap <at> qmail-ldap.org>
Sent: Tuesday, February 01, 2011 11:19 PM
Subject: pregunta

> Tengo instalado el qmail-ldap, pero no consigo hacer funcionar el
> spamassassin. alguién puede ayudarme
>
>
> -- 
> ING. Angel Noriega
> Administrador de Tecnología
> Unidad de Informática
> Sección de Redes
> 0291-6400110-6400195-6415767
>
> "No es la especie más fuerte la que sobrevive, ni la más inteligente, sino
> la que responde mejor al cambio"
> CHARLES DARWIN
>
>
>
>
>
(Continue reading)

Gennady G. Marchenko | 4 Feb 2011 19:19
Picon
Favicon

bigbrother problem: forward all messages not working

Hi all!

Could you tell please, can I use bigbrother to forward ALL mail to 
bigbrother <at> mydomain account?

:bigbrother <at> mydomain
and
*:bigbrother <at> mydomain

doesnt work :(

Best wishes,
Gennady.

Shepherd Nhongo | 4 Feb 2011 19:37
Picon

Re: bigbrother problem: forward all messages not working



On Fri, Feb 4, 2011 at 8:19 PM, Gennady G. Marchenko <gennady.marchenko <at> itv.ru> wrote:
Hi all!

Could you tell please, can I use bigbrother to forward ALL mail to bigbrother <at> mydomain account?
if you can't get it to work that's great you do not deserve it to work small broter lol 

:bigbrother <at> mydomain
and
*:bigbrother <at> mydomain

doesnt work :(

Best wishes,
Gennady.




--
Shepherd Nhongo

Do not Queue mail with SENDMAIL, send mail with QMAIL

Mobile +267 74476040
Felipe Augusto van de Wiel | 4 Feb 2011 20:01
Picon

Re: bigbrother problem: forward all messages not working


On 04-02-2011 16:19, Gennady G. Marchenko wrote:
> Hi all!
> 
> Could you tell please, can I use bigbrother to forward ALL mail to
> bigbrother <at> mydomain account?
> 
> :bigbrother <at> mydomain
> and
> *:bigbrother <at> mydomain
> 
> doesnt work :(

AFAIK ~control/bigbrother is a per address setup, you can't do it for
the entire domain. You would need to use something else like qmail
extra queue, virtual users/address, a default .qmail or create a line
per address on the bigbrother.

Kind regards,
--

-- 
Felipe Augusto van de Wiel <felipe.wiel <at> complexopequenoprincipe.org.br>
Tecnologia da Informação (TI) - Complexo Pequeno Príncipe
http://www.pequenoprincipe.org.br/    T: +55 41 3310 1747
Gennady G. Marchenko | 4 Feb 2011 21:28
Picon
Favicon

Re: bigbrother problem: forward all messages not working

04.02.2011 21:37, Shepherd Nhongo пишет:


On Fri, Feb 4, 2011 at 8:19 PM, Gennady G. Marchenko <gennady.marchenko <at> itv.ru> wrote:
Hi all!

Could you tell please, can I use bigbrother to forward ALL mail to bigbrother <at> mydomain account?
if you can't get it to work that's great you do not deserve it to work small broter lol 

Ah, now that is a great idea.  Genius! :)

My idea was check all outcoming messages over maildrop on this account and put it back to sent folders of my forgetful users.

So I can store all transit messages to folder only with qmail-scanner so  bigbrother's feature mayb help me, but one address per line isn't good solution.

Gennady.
Jack Croqueta | 25 Feb 2011 09:48
Favicon

Strange problem with mail sent from Exchange 2003 server

Hi,

I'm suffering a rare problem when I receive e-mails from a exchange  
2003 server to my qmail-ldap server.

Many mails sent from this server have this problem:
-----------------------------------------------------------------------
220 mx.mydomain ESMTP
EHLO exchange2003
250-mx.mydomain
250-PIPELINING
250-SIZE 26214400
250-DATAZ
250-STARTTLS
250 8BITMIME

MAIL FROM:<xxxxxxxx <at> exchange2003> SIZE=1433152
250 ok
RCPT TO:<me <at> mydomain>
250 ok
DATA
354 go ahead punk, make my day

// (1200seconds later...)

451 timeout (#4.4.2)

The exchange 2003 server can send without problem to other servers -as  
gmail.com or pobladores.com-.

It isn't a problem of mail size restriction or antispam policy. The  
delivery of a mail can fail X times and finally send ok. Others,  
expires after two days retrying.

Have you any idea?

Regards,
Spamis

Jack Croqueta | 25 Feb 2011 12:00
Favicon

Re: Strange problem with mail sent from Exchange 2003 server

Thanks, but I don't have greylist active... (but please, send me these  
fix guide when you can).

My qmail-smtp.rules (which generate qmail-smtp.cdb) for this exchange  
server is:

"xx.xx.xx.xx:allow"

My run script for qmail-smtpd is:

---------------------------------------------------------------
#!/bin/sh
exec 2>&1 \
envdir ./env \
sh -c '
     case "$REMOTENAME" in h) H=;; p) H=p;; *) H=H;; esac
     case "$REMOTEINFO" in r) R=;; [0-9]*) R="t$REMOTEINFO";; *) R=R;; esac
     exec \
     envuidgid qmaild \
     softlimit ${DATALIMIT+"-d$DATALIMIT"} \
     /usr/local/bin/tcpserver \
         -vDU"$H$R" \
         ${LOCALNAME+"-l$LOCALNAME"} \
         ${BACKLOG+"-b$BACKLOG"} \
         ${CONCURRENCY+"-c$CONCURRENCY"} \
         -x/var/qmail/control/qmail-smtpd.cdb \
         -- "${IP-0}" "${PORT-25}" \
     /var/qmail/bin/qmail-smtpd
-------------------------------------------------------------------

I'm analyzing tcp traffic with wireshark, I hope found something...

Regards

Shepherd Nhongo <shepherdzw <at> gmail.com> escribió:

> This error normally happens when an exchange server talks to a mail  
> server with greylisting.
>
> I will send you a fix guide for exchange 2003 and below.2007 and  
> later have fixed this issue.
>
> Sent from my iPhone
>
> On Feb 25, 2011, at 10:48 AM, Jack Croqueta <spamis <at> pobladores.com> wrote:
>
>> Hi,
>>
>> I'm suffering a rare problem when I receive e-mails from a exchange  
>> 2003 server to my qmail-ldap server.
>>
>> Many mails sent from this server have this problem:
>> -----------------------------------------------------------------------
>> 220 mx.mydomain ESMTP
>> EHLO exchange2003
>> 250-mx.mydomain
>> 250-PIPELINING
>> 250-SIZE 26214400
>> 250-DATAZ
>> 250-STARTTLS
>> 250 8BITMIME
>>
>> MAIL FROM:<xxxxxxxx <at> exchange2003> SIZE=1433152
>> 250 ok
>> RCPT TO:<me <at> mydomain>
>> 250 ok
>> DATA
>> 354 go ahead punk, make my day
>>
>> // (1200seconds later...)
>>
>> 451 timeout (#4.4.2)
>>
>>
>> The exchange 2003 server can send without problem to other servers  
>> -as gmail.com or pobladores.com-.
>>
>> It isn't a problem of mail size restriction or antispam policy. The  
>> delivery of a mail can fail X times and finally send ok. Others,  
>> expires after two days retrying.
>>
>> Have you any idea?
>>
>> Regards,
>> Spamis
>>
>

Jack Croqueta | 25 Feb 2011 13:17
Favicon

Any qmail server for do a test?

Hi,

Do you know any free e-mail service wich run qmail or qmail-ldap?

I want open an account for test my current problem (emails sent from  
exchange server to my qmail-ldap server fails aleatory) sending some  
mails from the affected exchange 2003 server to it.

Regards,
Spamis

Shepherd Nhongo | 25 Feb 2011 10:59
Picon

Re: Strange problem with mail sent from Exchange 2003 server

This error normally happens when an exchange server talks to a mail server with greylisting.

I will send you a fix guide for exchange 2003 and below.2007 and later have fixed this issue. 

Sent from my iPhone

On Feb 25, 2011, at 10:48 AM, Jack Croqueta <spamis <at> pobladores.com> wrote:

> Hi,
> 
> I'm suffering a rare problem when I receive e-mails from a exchange 2003 server to my qmail-ldap server.
> 
> Many mails sent from this server have this problem:
> -----------------------------------------------------------------------
> 220 mx.mydomain ESMTP
> EHLO exchange2003
> 250-mx.mydomain
> 250-PIPELINING
> 250-SIZE 26214400
> 250-DATAZ
> 250-STARTTLS
> 250 8BITMIME
> 
> MAIL FROM:<xxxxxxxx <at> exchange2003> SIZE=1433152
> 250 ok
> RCPT TO:<me <at> mydomain>
> 250 ok
> DATA
> 354 go ahead punk, make my day
> 
> // (1200seconds later...)
> 
> 451 timeout (#4.4.2)
> 
> 
> The exchange 2003 server can send without problem to other servers -as gmail.com or pobladores.com-.
> 
> It isn't a problem of mail size restriction or antispam policy. The delivery of a mail can fail X times and
finally send ok. Others, expires after two days retrying.
> 
> Have you any idea?
> 
> Regards,
> Spamis
> 


Gmane