[toaster] auth only

2007-11-28 Thread Lampa
Hello,

is possible to turn on (via some variable) requirements of auth ? Eg.
users with no user/passwd cannot send email.

Thank you.
-- 
Lampa


Re: [toaster] auth only

2007-11-28 Thread Qmail List

is possible to turn on (via some variable) requirements of auth ? Eg.
users with no user/passwd cannot send email.


Bill's toaster has smtp-auth built in


Re: [toaster] auth only

2007-11-28 Thread Lampa
Hello,

i know but i need auth all users eg forced smtp authentication. No
authenticated users should be dropped connection.


2007/11/28, Qmail List [EMAIL PROTECTED]:
  is possible to turn on (via some variable) requirements of auth ? Eg.
  users with no user/passwd cannot send email.

 Bill's toaster has smtp-auth built in



-- 
Lampa


Re: [toaster] auth only

2007-11-28 Thread tonix (Antonio Nati)

Lampa ha scritto:

Hello,

i know but i need auth all users eg forced smtp authentication. No
authenticated users should be dropped connection.

  
chkuser within Bill's toaster can force auth. Not authenticated users 
will be denied sending.


Tonino

2007/11/28, Qmail List [EMAIL PROTECTED]:
  

is possible to turn on (via some variable) requirements of auth ? Eg.
users with no user/passwd cannot send email.
  

Bill's toaster has smtp-auth built in





  



--

   [EMAIL PROTECTED]Interazioni di Antonio Nati 
  http://www.interazioni.it  [EMAIL PROTECTED]   





Re: [toaster] auth only

2007-11-28 Thread Rick Macdougall

Lampa wrote:

Hello,

i know but i need auth all users eg forced smtp authentication. No
authenticated users should be dropped connection.


2007/11/28, Qmail List [EMAIL PROTECTED]:

is possible to turn on (via some variable) requirements of auth ? Eg.
users with no user/passwd cannot send email.

Bill's toaster has smtp-auth built in






There is an option in the chkuser patch to do exactly that.

Look for AUTH in the chkusr_settings.h file.

Regards,

Rick



Re: [toaster] auth only

2007-11-28 Thread Lampa
Hello,

using older version of chkuser and toaster, option is not available :(

2007/11/28, Rick Macdougall [EMAIL PROTECTED]:
 Lampa wrote:
  Hello,
 
  i know but i need auth all users eg forced smtp authentication. No
  authenticated users should be dropped connection.
 
 
  2007/11/28, Qmail List [EMAIL PROTECTED]:
  is possible to turn on (via some variable) requirements of auth ? Eg.
  users with no user/passwd cannot send email.
  Bill's toaster has smtp-auth built in
 
 
 

 There is an option in the chkuser patch to do exactly that.

 Look for AUTH in the chkusr_settings.h file.

 Regards,

 Rick




-- 
Lampa


Re: [toaster] auth only

2007-11-28 Thread tonix (Antonio Nati)

Lampa ha scritto:

Hello,

using older version of chkuser and toaster, option is not available :(
  

Upgrade chkuser to 2.0.9. It's easy.

Tonino

2007/11/28, Rick Macdougall [EMAIL PROTECTED]:
  

Lampa wrote:


Hello,

i know but i need auth all users eg forced smtp authentication. No
authenticated users should be dropped connection.


2007/11/28, Qmail List [EMAIL PROTECTED]:
  

is possible to turn on (via some variable) requirements of auth ? Eg.
users with no user/passwd cannot send email.
  

Bill's toaster has smtp-auth built in


  

There is an option in the chkuser patch to do exactly that.

Look for AUTH in the chkusr_settings.h file.

Regards,

Rick






  



--

   [EMAIL PROTECTED]Interazioni di Antonio Nati 
  http://www.interazioni.it  [EMAIL PROTECTED]   





Re: [toaster] auth only

2007-11-28 Thread Rick Macdougall

Lampa wrote:

Hello,

using older version of chkuser and toaster, option is not available :(

2007/11/28, Rick Macdougall [EMAIL PROTECTED]:

Lampa wrote:

Hello,

i know but i need auth all users eg forced smtp authentication. No
authenticated users should be dropped connection.


2007/11/28, Qmail List [EMAIL PROTECTED]:

is possible to turn on (via some variable) requirements of auth ? Eg.
users with no user/passwd cannot send email.

Bill's toaster has smtp-auth built in




There is an option in the chkuser patch to do exactly that.

Look for AUTH in the chkusr_settings.h file.



Upgrade then, it's seamless.

Rick



Re: [toaster] auth only

2007-11-28 Thread Lampa
Hello,

i know it's easy i just looked in code, but i think that is not good
for me. Maybe i'm wrong but must auth works only for not relaying.
Messages for domains listed in rcpthosts will be accepted without auth
and that is what i don't want. All users which will be using this
server must auth regardless rcpthost/morercpt. It's only my theory
based in short look in code, specialy this piece:
#if defined CHKUSER_EXTRA_MUSTAUTH_VARIABLE
if (env_get (CHKUSER_EXTRA_MUSTAUTH_VARIABLE)) {
   if (relayclient) {
 mustauth_value = 0;
   } else {
 mustauth_value = 1;
   }
}
#endif

relayclient is set via variable (i will not set this variable) or when
accepting message for domain in rcptlist.

Maybe i'm wrong

In short i SMTPAUTHUSER must be filled before RCPT TO:, if not
connection should be dropped with 550 SMTP AUTH required or similar
error (530 Authentication required)

Thank you.

2007/11/28, tonix (Antonio Nati) [EMAIL PROTECTED]:

  Lampa ha scritto:
  Hello,

 using older version of chkuser and toaster, option is not available :(

  Upgrade chkuser to 2.0.9. It's easy.

  Tonino

  2007/11/28, Rick Macdougall [EMAIL PROTECTED]:


  Lampa wrote:


  Hello,

 i know but i need auth all users eg forced smtp authentication. No
 authenticated users should be dropped connection.


 2007/11/28, Qmail List [EMAIL PROTECTED]:



  is possible to turn on (via some variable) requirements of auth ? Eg.
 users with no user/passwd cannot send email.

  Bill's toaster has smtp-auth built in



  There is an option in the chkuser patch to do exactly that.

 Look for AUTH in the chkusr_settings.h file.

 Regards,

 Rick







  --
 
  [EMAIL PROTECTED] Interazioni di Antonio Nati
  http://www.interazioni.it [EMAIL PROTECTED]
 




-- 
Lampa


[toaster] recipient does not accept mails from

2007-11-28 Thread Th. Salditt
Hello,

Some of my users have created a forward emailadress to gmx.net or web.de

If now some one send to this local adresses an email they get the
following error message:

The recipient does not accept mails from 'gmx.net' over foreign
mailservers.

Have someone a solution for this?

Translate the from address or connect with a account to gmx ?

Thank you

Thomas



Re: [toaster] auth only

2007-11-28 Thread tonix (Antonio Nati)

Lampa ha scritto:

Hello,

i know it's easy i just looked in code, but i think that is not good
for me. Maybe i'm wrong but must auth works only for not relaying.
Messages for domains listed in rcpthosts will be accepted without auth
and that is what i don't want. All users which will be using this
server must auth regardless rcpthost/morercpt. It's only my theory
based in short look in code, specialy this piece:
#if defined CHKUSER_EXTRA_MUSTAUTH_VARIABLE
if (env_get (CHKUSER_EXTRA_MUSTAUTH_VARIABLE)) {
   if (relayclient) {
 mustauth_value = 0;
   } else {
 mustauth_value = 1;
   }
}
#endif

relayclient is set via variable (i will not set this variable) or when
accepting message for domain in rcptlist.

Maybe i'm wrong
  

Not maybe :-).
RELAYCLIENT is set only when set via variable or user is authenticated. 
In no other case it is SET.


Tonino


In short i SMTPAUTHUSER must be filled before RCPT TO:, if not
connection should be dropped with 550 SMTP AUTH required or similar
error (530 Authentication required)

Thank you.

2007/11/28, tonix (Antonio Nati) [EMAIL PROTECTED]:
  

 Lampa ha scritto:
 Hello,

using older version of chkuser and toaster, option is not available :(

 Upgrade chkuser to 2.0.9. It's easy.

 Tonino

 2007/11/28, Rick Macdougall [EMAIL PROTECTED]:


 Lampa wrote:


 Hello,

i know but i need auth all users eg forced smtp authentication. No
authenticated users should be dropped connection.


2007/11/28, Qmail List [EMAIL PROTECTED]:



 is possible to turn on (via some variable) requirements of auth ? Eg.
users with no user/passwd cannot send email.

 Bill's toaster has smtp-auth built in



 There is an option in the chkuser patch to do exactly that.

Look for AUTH in the chkusr_settings.h file.

Regards,

Rick







 --

 [EMAIL PROTECTED] Interazioni di Antonio Nati
 http://www.interazioni.it [EMAIL PROTECTED]







  



--

   [EMAIL PROTECTED]Interazioni di Antonio Nati 
  http://www.interazioni.it  [EMAIL PROTECTED]