RE: [qmailtoaster] Re: Is it possible with Qmail

2011-02-03 Thread Anil Aliyan
Dear Eric,

Yes these requirements are made by the customer. I know exchange server has
all these features but just wanted to check if other mail servers like Qmail
etc. can provide all these features or not as Exchange Server will be a
costly affair.

Regards,

Anil Aliyan


-Original Message-
From: Eric Shubert [mailto:e...@shubes.net] 
Sent: Thursday, February 03, 2011 7:24 PM
To: qmailtoaster-list@qmailtoaster.com
Subject: [qmailtoaster] Re: Is it possible with Qmail

On 02/03/2011 06:02 AM, Anil Aliyan wrote:
> Dear All ,
>
> I have a prospect customer who wish to host their mailing server with 
> us and wish to the following capabilities in the provided mailing
solution.
> Can we have all these mentioned below in Qmail or any add-on for qmail.
>
> 1.Every incoming & outgoing messages must have unique number generated 
> at server level.
>
> 2.Every incoming & outgoing message track/ status should be maintained 
> and administrator can monitored the overall log.
>
> 3.Admin can maintain user profile and grouping.
>
> 4.Admin can review overall / user wise activities.
>
> Regards,
>
> Anil Aliyan
>

Were these "requirements" written by you or your prospective customer?

--
-Eric 'shubes'



-
Qmailtoaster is sponsored by Vickers Consulting Group
(www.vickersconsulting.com)
Vickers Consulting Group offers Qmailtoaster support and installations.
  If you need professional help with your setup, contact them today!

-
 Please visit qmailtoaster.com for the latest news, updates, and
packages.
 
  To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
 For additional commands, e-mail:
qmailtoaster-list-h...@qmailtoaster.com





-
Qmailtoaster is sponsored by Vickers Consulting Group 
(www.vickersconsulting.com)
Vickers Consulting Group offers Qmailtoaster support and installations.
  If you need professional help with your setup, contact them today!
-
 Please visit qmailtoaster.com for the latest news, updates, and packages.
 
  To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
 For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com




[qmailtoaster] Re: Forcing TLS on port 587

2011-02-03 Thread Eric Shubert
Some older clients (Outlook'03 comes to mind) don't do TLS, so I think 
there should be an option. That being said, I think it'd be good if the 
'stock' QMT has the option enabled (require TLS).

--
-Eric 'shubes'

On 02/03/2011 01:12 PM, Jean-Paul van de Plasse wrote:

I did not include the FORCE_TLS patch when doing the submission patches.
Can not remember anymore why, it is to long ago..

Quick google returns a simple solution, that always requires tls for
authentication
Maybe it is nicer to have this optional with the FORCE_TLS, but that
should not be too difficult either.

void  smtp_auth(arg)
char*arg;
{
+   if  (!ssl)
+   {
+   out("538 auth not available without TLS (#5.3.3)\r\n");
+   return;
+   }
int i;
char*cmd=  arg;


http://notes.sagredo.eu/node/84


JP

On Feb 3, 2011, at 20:54 , Eric Shubert wrote:


I'd be very careful with this one, CJ.
You need to keep 25 open for incoming (inter-domain) mail. ;)

If QMT doesn't have the patch for the FORCE_TLS option, it'd be nice
if it did. This is something I'd also like to see on the submission
instance of qmail-smtp.

Can you round up that patch? If you can give it a try, that'd be
great. If not, please post here where to get it so someone (hopefully
other than Jake) can give it a shot to see if it clashes with any
other patches we're using.

--
-Eric 'shubes'

On 02/03/2011 12:42 PM, Cecil Yother, Jr. wrote:

You could block port 25 in your iptables

On 02/03/2011 11:20 AM, Jeremy Utley wrote:

Hello everyone!

We're using a toaster installation for our primary mail server at my
company, and over the last few weeks we've been working on configuring
everyone's mail clients to use SSL for sending& receiving e-mail.
Now that we have everyone converted over to use of SSL, we'd like to
stop all non-SSL access. For imap and pop3, it was quite simple, I
simply disabled the imap4 and pop3 run scripts in
/var/qmail/supervise. However, for SMTP, I haven't had much luck yet.
We'd like to force the submission port 587 to require TLS and
SMTP-Auth before a message is sent out., while leaving SMTP port 25
un-modified. I had read on another qmail site that you could do this
by use of a FORCE_TLS=1 variable in the run script, but that did not
work, so I suspect that this patch is not in the toaster packages (and
running strings against /var/qmail/bin/qmail-smtpd seems to bear that
out). Is there any way with the toaster to enforce TLS usage, and
reject any mail that's not TLS. We'd like to stick with TLS so we
don't have to reconfigure everyone's mail clients for SMTPS, which is
deprecated at any rate.

Thanks for any help you all can give!

Jeremy

-
Qmailtoaster is sponsored by Vickers Consulting Group
(www.vickersconsulting.com )
Vickers Consulting Group offers Qmailtoaster support and installations.
If you need professional help with your setup, contact them today!
-
Please visit qmailtoaster.com  for the
latest news, updates, and packages.

To unsubscribe, e-mail:
qmailtoaster-list-unsubscr...@qmailtoaster.com

For additional commands, e-mail:
qmailtoaster-list-h...@qmailtoaster.com










-
Qmailtoaster is sponsored by Vickers Consulting Group
(www.vickersconsulting.com )
Vickers Consulting Group offers Qmailtoaster support and installations.
If you need professional help with your setup, contact them today!
-
Please visit qmailtoaster.com  for the latest
news, updates, and packages.
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com

For additional commands, e-mail:
qmailtoaster-list-h...@qmailtoaster.com









-
Qmailtoaster is sponsored by Vickers Consulting Group 
(www.vickersconsulting.com)
   Vickers Consulting Group offers Qmailtoaster support and installations.
 If you need professional help with your setup, contact them today!
-
Please visit qmailtoaster.com for the latest news, updates, and packages.

 To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com

For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com




Re: [qmailtoaster] Re: Forcing TLS on port 587

2011-02-03 Thread Jean-Paul van de Plasse
I did not include the FORCE_TLS patch when doing the submission patches.
Can not remember anymore why, it is to long ago..

Quick google returns a simple solution, that always requires tls for 
authentication
Maybe it is nicer to have this optional with the FORCE_TLS, but that should not 
be too difficult either.

void smtp_auth(arg)
char *arg;
{
+  if (!ssl)
+  {
+  out("538 auth not available without TLS (#5.3.3)\r\n");
+  return;
+  }
int i;
char *cmd = arg;

http://notes.sagredo.eu/node/84


JP

On Feb 3, 2011, at 20:54 , Eric Shubert wrote:

> I'd be very careful with this one, CJ.
> You need to keep 25 open for incoming (inter-domain) mail. ;)
> 
> If QMT doesn't have the patch for the FORCE_TLS option, it'd be nice if it 
> did. This is something I'd also like to see on the submission instance of 
> qmail-smtp.
> 
> Can you round up that patch? If you can give it a try, that'd be great. If 
> not, please post here where to get it so someone (hopefully other than Jake) 
> can give it a shot to see if it clashes with any other patches we're using.
> 
> -- 
> -Eric 'shubes'
> 
> On 02/03/2011 12:42 PM, Cecil Yother, Jr. wrote:
>> You could block port 25 in your iptables
>> 
>> On 02/03/2011 11:20 AM, Jeremy Utley wrote:
>>> Hello everyone!
>>> 
>>> We're using a toaster installation for our primary mail server at my
>>> company, and over the last few weeks we've been working on configuring
>>> everyone's mail clients to use SSL for sending&  receiving e-mail.
>>> Now that we have everyone converted over to use of SSL, we'd like to
>>> stop all non-SSL access.  For imap and pop3, it was quite simple, I
>>> simply disabled the imap4 and pop3 run scripts in
>>> /var/qmail/supervise.  However, for SMTP, I haven't had much luck yet.
>>>  We'd like to force the submission port 587 to require TLS and
>>> SMTP-Auth before a message is sent out., while leaving SMTP port 25
>>> un-modified.  I had read on another qmail site that you could do this
>>> by use of a FORCE_TLS=1 variable in the run script, but that did not
>>> work, so I suspect that this patch is not in the toaster packages (and
>>> running strings against /var/qmail/bin/qmail-smtpd seems to bear that
>>> out).  Is there any way with the toaster to enforce TLS usage, and
>>> reject any mail that's not TLS.  We'd like to stick with TLS so we
>>> don't have to reconfigure everyone's mail clients for SMTPS, which is
>>> deprecated at any rate.
>>> 
>>> Thanks for any help you all can give!
>>> 
>>> Jeremy
>>> 
>>> -
>>> Qmailtoaster is sponsored by Vickers Consulting Group 
>>> (www.vickersconsulting.com)
>>> Vickers Consulting Group offers Qmailtoaster support and installations.
>>>   If you need professional help with your setup, contact them today!
>>> -
>>>  Please visit qmailtoaster.com for the latest news, updates, and 
>>> packages.
>>> 
>>>   To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
>>>  For additional commands, e-mail: 
>>> qmailtoaster-list-h...@qmailtoaster.com
>>> 
>>> 
>>> 
>> 
> 
> 
> 
> -
> Qmailtoaster is sponsored by Vickers Consulting Group 
> (www.vickersconsulting.com)
>   Vickers Consulting Group offers Qmailtoaster support and installations.
> If you need professional help with your setup, contact them today!
> -
>Please visit qmailtoaster.com for the latest news, updates, and packages.
> To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
>For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com
> 
> 



[qmailtoaster] Re: Forcing TLS on port 587

2011-02-03 Thread Eric Shubert

I'd be very careful with this one, CJ.
You need to keep 25 open for incoming (inter-domain) mail. ;)

If QMT doesn't have the patch for the FORCE_TLS option, it'd be nice if 
it did. This is something I'd also like to see on the submission 
instance of qmail-smtp.


Can you round up that patch? If you can give it a try, that'd be great. 
If not, please post here where to get it so someone (hopefully other 
than Jake) can give it a shot to see if it clashes with any other 
patches we're using.


--
-Eric 'shubes'

On 02/03/2011 12:42 PM, Cecil Yother, Jr. wrote:

You could block port 25 in your iptables

On 02/03/2011 11:20 AM, Jeremy Utley wrote:

Hello everyone!

We're using a toaster installation for our primary mail server at my
company, and over the last few weeks we've been working on configuring
everyone's mail clients to use SSL for sending&  receiving e-mail.
Now that we have everyone converted over to use of SSL, we'd like to
stop all non-SSL access.  For imap and pop3, it was quite simple, I
simply disabled the imap4 and pop3 run scripts in
/var/qmail/supervise.  However, for SMTP, I haven't had much luck yet.
  We'd like to force the submission port 587 to require TLS and
SMTP-Auth before a message is sent out., while leaving SMTP port 25
un-modified.  I had read on another qmail site that you could do this
by use of a FORCE_TLS=1 variable in the run script, but that did not
work, so I suspect that this patch is not in the toaster packages (and
running strings against /var/qmail/bin/qmail-smtpd seems to bear that
out).  Is there any way with the toaster to enforce TLS usage, and
reject any mail that's not TLS.  We'd like to stick with TLS so we
don't have to reconfigure everyone's mail clients for SMTPS, which is
deprecated at any rate.

Thanks for any help you all can give!

Jeremy

-
Qmailtoaster is sponsored by Vickers Consulting Group 
(www.vickersconsulting.com)
 Vickers Consulting Group offers Qmailtoaster support and installations.
   If you need professional help with your setup, contact them today!
-
  Please visit qmailtoaster.com for the latest news, updates, and packages.

   To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
  For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com









-
Qmailtoaster is sponsored by Vickers Consulting Group 
(www.vickersconsulting.com)
   Vickers Consulting Group offers Qmailtoaster support and installations.
 If you need professional help with your setup, contact them today!
-
Please visit qmailtoaster.com for the latest news, updates, and packages.

 To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com

For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com




Re: [qmailtoaster] Forcing TLS on port 587

2011-02-03 Thread Cecil Yother, Jr.
You could block port 25 in your iptables

On 02/03/2011 11:20 AM, Jeremy Utley wrote:
> Hello everyone!
>
> We're using a toaster installation for our primary mail server at my
> company, and over the last few weeks we've been working on configuring
> everyone's mail clients to use SSL for sending & receiving e-mail.
> Now that we have everyone converted over to use of SSL, we'd like to
> stop all non-SSL access.  For imap and pop3, it was quite simple, I
> simply disabled the imap4 and pop3 run scripts in
> /var/qmail/supervise.  However, for SMTP, I haven't had much luck yet.
>  We'd like to force the submission port 587 to require TLS and
> SMTP-Auth before a message is sent out., while leaving SMTP port 25
> un-modified.  I had read on another qmail site that you could do this
> by use of a FORCE_TLS=1 variable in the run script, but that did not
> work, so I suspect that this patch is not in the toaster packages (and
> running strings against /var/qmail/bin/qmail-smtpd seems to bear that
> out).  Is there any way with the toaster to enforce TLS usage, and
> reject any mail that's not TLS.  We'd like to stick with TLS so we
> don't have to reconfigure everyone's mail clients for SMTPS, which is
> deprecated at any rate.
>
> Thanks for any help you all can give!
>
> Jeremy
>
> -
> Qmailtoaster is sponsored by Vickers Consulting Group 
> (www.vickersconsulting.com)
> Vickers Consulting Group offers Qmailtoaster support and installations.
>   If you need professional help with your setup, contact them today!
> -
>  Please visit qmailtoaster.com for the latest news, updates, and packages.
>  
>   To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
>  For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com
>
>
>   

-- 
Cecil Yother, Jr. "cj"
cj's
2318 Clement Ave
Alameda, CA  94501

tel 510.865.2787 | http://yother.com
Check out the new Volvo classified resource http://www.volvoclassified.com


-
Qmailtoaster is sponsored by Vickers Consulting Group 
(www.vickersconsulting.com)
Vickers Consulting Group offers Qmailtoaster support and installations.
  If you need professional help with your setup, contact them today!
-
 Please visit qmailtoaster.com for the latest news, updates, and packages.
 
  To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
 For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com




[qmailtoaster] Forcing TLS on port 587

2011-02-03 Thread Jeremy Utley
Hello everyone!

We're using a toaster installation for our primary mail server at my
company, and over the last few weeks we've been working on configuring
everyone's mail clients to use SSL for sending & receiving e-mail.
Now that we have everyone converted over to use of SSL, we'd like to
stop all non-SSL access.  For imap and pop3, it was quite simple, I
simply disabled the imap4 and pop3 run scripts in
/var/qmail/supervise.  However, for SMTP, I haven't had much luck yet.
 We'd like to force the submission port 587 to require TLS and
SMTP-Auth before a message is sent out., while leaving SMTP port 25
un-modified.  I had read on another qmail site that you could do this
by use of a FORCE_TLS=1 variable in the run script, but that did not
work, so I suspect that this patch is not in the toaster packages (and
running strings against /var/qmail/bin/qmail-smtpd seems to bear that
out).  Is there any way with the toaster to enforce TLS usage, and
reject any mail that's not TLS.  We'd like to stick with TLS so we
don't have to reconfigure everyone's mail clients for SMTPS, which is
deprecated at any rate.

Thanks for any help you all can give!

Jeremy

-
Qmailtoaster is sponsored by Vickers Consulting Group 
(www.vickersconsulting.com)
Vickers Consulting Group offers Qmailtoaster support and installations.
  If you need professional help with your setup, contact them today!
-
 Please visit qmailtoaster.com for the latest news, updates, and packages.
 
  To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
 For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com




[qmailtoaster] Re: Problem with qmHandle

2011-02-03 Thread Eric Shubert
The @ character has a special meaning to bash. I would try putting 
single quotes around the address.

--
-Eric 'shubes'

On 02/03/2011 09:34 AM, Adrian Ramirez wrote:

Hi, with qmHandle I try to delete the messages sent by the same sender.
When I run the command I get this error, its a sintax error?

# qmHandle -tf t...@mail.com 
Calling system script to terminate qmail...
Stopping qmail-toaster: svscan qmail logging.
Message matching "From: -tf" not found in the queue!
Qmail is already running again, so it won't be restarted.

With "qmHandle -l" I found that there are queued messages that
correspond to my search.

qtp-whatami v0.3.7 jue feb  3 13:21:09 PYST 2011
DISTRO=Red Hat Enterprise
OSVER=5.5
QTARCH=x86_64
QTKERN=2.6.18-194.8.1.el5
BUILD_DIST=cnt5064
BUILD_DIR=/usr/src/redhat
This machine's OS is supported, but this version/arch has not been tested.

Could you help me?

Thanks.

--
Adrian Ramirez





-
Qmailtoaster is sponsored by Vickers Consulting Group 
(www.vickersconsulting.com)
   Vickers Consulting Group offers Qmailtoaster support and installations.
 If you need professional help with your setup, contact them today!
-
Please visit qmailtoaster.com for the latest news, updates, and packages.

 To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com

For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com




[qmailtoaster] Problem with qmHandle

2011-02-03 Thread Adrian Ramirez
Hi, with qmHandle I try to delete the messages sent by the same sender. When
I run the command I get this error, its a sintax error?

# qmHandle -tf t...@mail.com
Calling system script to terminate qmail...
Stopping qmail-toaster: svscan qmail logging.
Message matching "From: -tf" not found in the queue!
Qmail is already running again, so it won't be restarted.

With "qmHandle -l" I found that there are queued messages that correspond to
my search.

qtp-whatami v0.3.7 jue feb  3 13:21:09 PYST 2011
DISTRO=Red Hat Enterprise
OSVER=5.5
QTARCH=x86_64
QTKERN=2.6.18-194.8.1.el5
BUILD_DIST=cnt5064
BUILD_DIR=/usr/src/redhat
This machine's OS is supported, but this version/arch has not been tested.

Could you help me?

Thanks.

--
Adrian Ramirez


[qmailtoaster] Re: upon reboot the webserver is goofed

2011-02-03 Thread Eric Shubert

On 02/03/2011 08:12 AM, Jim Shupert wrote:



I think Jim's talking about the server side key/certificate. The
certificate that you have configured apparently has a password
associated with it. Is this a self signed cert, or one you purchased?


Yes that is exactly it.
and all is well
I had my pass phrase documented
[ i always keep my feathers numbered for just such a situation ]
i rebOOted and gave the proper response

but thanks much for the info , all the info

a happy ending

have a great day - yall

-


Just an FYI. You don't really need a password on server certs. Servers 
should boot up w/out needing someone to enter a password (imho, in most 
situations). If there's no pass phrase associated with the certificate, 
there's no need for "operator intervention". Do be sure that keys/certs 
with no pass phrase are properly secured though (chmod 600 with 
appropriate ownership).


--
-Eric 'shubes'


-
Qmailtoaster is sponsored by Vickers Consulting Group 
(www.vickersconsulting.com)
   Vickers Consulting Group offers Qmailtoaster support and installations.
 If you need professional help with your setup, contact them today!
-
Please visit qmailtoaster.com for the latest news, updates, and packages.

 To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com

For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com




Re: [qmailtoaster] Re: upon reboot the webserver is goofed

2011-02-03 Thread Jim Shupert


I think Jim's talking about the server side key/certificate. The 
certificate that you have configured apparently has a password 
associated with it. Is this a self signed cert, or one you purchased?



Yes that is exactly it.
and all is well
I had my pass phrase documented
[ i always keep my feathers numbered for just such a situation ]
i rebOOted and gave the proper response

but thanks much for the info , all the info

a happy ending

have a great day - yall

-
Qmailtoaster is sponsored by Vickers Consulting Group 
(www.vickersconsulting.com)
   Vickers Consulting Group offers Qmailtoaster support and installations.
 If you need professional help with your setup, contact them today!
-
Please visit qmailtoaster.com for the latest news, updates, and packages.

 To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com

For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com




Re: [qmailtoaster] disable spam assasin

2011-02-03 Thread Jake Vickers

On 02/02/2011 12:35 PM, Edward Finlayson wrote:


Hi Rafeal,

Tried this but still get spamhaus warning when testing so must still 
be enabled somewhere.




I believe you are talking about the blacklists, not spamassassin since 
you're mentioning Spamhaus.




[qmailtoaster] Re: upon reboot the webserver is goofed

2011-02-03 Thread Eric Shubert
I think Jim's talking about the server side key/certificate. The 
certificate that you have configured apparently has a password 
associated with it. Is this a self signed cert, or one you purchased?


You might be able to remove the pass phrase from the cert/key using the 
openssl command. See the 
http://wiki.qmailtoaster.com/index.php/Certificate page. That page could 
use a little rework though.


You can use the servercert.pem file that QMT uses (in 
/var/qmail/control) for apache as well. Users will probably get a 
warning message about the cert not being trusted, but it will still work 
if/when they accept the cert.


--
-Eric 'shubes'

On 02/03/2011 06:49 AM, Tonix (Antonio Nati) wrote:

Are you using https for any of these web services?
Usually Apache asks for pass when it has a certificate which needs that.

Tonino

Il 03/02/2011 14:36, Jim Shupert ha scritto:

I restarted my qmail server
It booted with 1 oddity

i asked for a pass phrase for a __ for apache ___.
it asked 5 times.
what a certificate?

i do not recall that ever happening before.
of course i did not provide the pass phrase that it was asking for.
what could that have been - and how might I know / recover it?

the server is working in that it is doing the mail task

BUT now the website - IMAP part is unable to start and ( squirrel mail )
and qmail admin is down
basically all the contact means via a browser.

what do you think?





--

 Inter@zioniInterazioni di Antonio Nati
http://www.interazioni.it   to...@interazioni.it






-
Qmailtoaster is sponsored by Vickers Consulting Group 
(www.vickersconsulting.com)
   Vickers Consulting Group offers Qmailtoaster support and installations.
 If you need professional help with your setup, contact them today!
-
Please visit qmailtoaster.com for the latest news, updates, and packages.

 To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com

For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com




Re: [qmailtoaster] upon reboot the webserver is goofed

2011-02-03 Thread Jim Shupert

yes - exactly.
and i think i now know what the magic word is

On 2/3/2011 8:49 AM, Tonix (Antonio Nati) wrote:

Are you using https for any of these web services?
Usually Apache asks for pass when it has a certificate which needs that.

Tonino

Il 03/02/2011 14:36, Jim Shupert ha scritto:

I restarted my qmail server
It booted with 1 oddity

i asked for a pass phrase for a __ for  apache  ___.
it asked 5 times.
what a certificate?

i do not recall that ever happening before.
of course i did not provide the pass phrase that it was asking for.
what could that have been - and how might I know / recover it?

the server is working in that it is doing the mail task

BUT now the website - IMAP part is unable to start and ( squirrel mail )
and qmail admin is down
basically all the contact means via a browser.

what do you think?





--

 Inter@zioniInterazioni di Antonio Nati
http://www.interazioni.it   to...@interazioni.it



Re: [qmailtoaster] upon reboot the webserver is goofed

2011-02-03 Thread Jim Shupert



On 2/3/2011 8:36 AM, Jim Shupert wrote:

I restarted my qmail server
It booted with 1 oddity

i asked for a pass phrase for a __ for  apache  ___.
it asked 5 times.
what a certificate?

what if I think i now know the pass phrase ( after all i did write it 
down and do have a sensible record ;)

[ lesson to self - 1st coffee then reBoot ]

is there a means to "shove' the happy pass phrase into apache and make 
it all go.

without a reboot
thanks
jims


[qmailtoaster] Re: Is it possible with Qmail

2011-02-03 Thread Eric Shubert

On 02/03/2011 06:02 AM, Anil Aliyan wrote:

Dear All ,

I have a prospect customer who wish to host their mailing server with us
and wish to the following capabilities in the provided mailing solution.
Can we have all these mentioned below in Qmail or any add-on for qmail.

1.Every incoming & outgoing messages must have unique number generated
at server level.

2.Every incoming & outgoing message track/ status should be maintained
and administrator can monitored the overall log.

3.Admin can maintain user profile and grouping.

4.Admin can review overall / user wise activities.

Regards,

Anil Aliyan



Were these "requirements" written by you or your prospective customer?

--
-Eric 'shubes'


-
Qmailtoaster is sponsored by Vickers Consulting Group 
(www.vickersconsulting.com)
   Vickers Consulting Group offers Qmailtoaster support and installations.
 If you need professional help with your setup, contact them today!
-
Please visit qmailtoaster.com for the latest news, updates, and packages.

 To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com

For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com




Re: [qmailtoaster] upon reboot the webserver is goofed

2011-02-03 Thread Tonix (Antonio Nati)

Are you using https for any of these web services?
Usually Apache asks for pass when it has a certificate which needs that.

Tonino

Il 03/02/2011 14:36, Jim Shupert ha scritto:

I restarted my qmail server
It booted with 1 oddity

i asked for a pass phrase for a __ for  apache  ___.
it asked 5 times.
what a certificate?

i do not recall that ever happening before.
of course i did not provide the pass phrase that it was asking for.
what could that have been - and how might I know / recover it?

the server is working in that it is doing the mail task

BUT now the website - IMAP part is unable to start and ( squirrel mail )
and qmail admin is down
basically all the contact means via a browser.

what do you think?





--

Inter@zioniInterazioni di Antonio Nati
   http://www.interazioni.it  to...@interazioni.it




[qmailtoaster] upon reboot the webserver is goofed

2011-02-03 Thread Jim Shupert

I restarted my qmail server
It booted with 1 oddity

i asked for a pass phrase for a __ for  apache  ___.
it asked 5 times.
what a certificate?

i do not recall that ever happening before.
of course i did not provide the pass phrase that it was asking for.
what could that have been - and how might I know / recover it?

the server is working in that it is doing the mail task

BUT now the website - IMAP part is unable to start and ( squirrel mail )
and qmail admin is down
basically all the contact means via a browser.

what do you think?




[qmailtoaster] Is it possible with Qmail

2011-02-03 Thread Anil Aliyan
Dear All ,

 

I have a prospect customer who wish to host their mailing server with us and
wish to the following capabilities in the provided mailing solution. Can we
have all these mentioned below in Qmail or any add-on for qmail.

 

1.   Every incoming & outgoing messages must have unique number
generated at server level.

2.   Every incoming & outgoing message track/ status  should be
maintained and administrator can monitored the overall log.

3.   Admin can maintain user profile and grouping.

4.   Admin can review overall / user wise activities.

 

Regards,

 

Anil Aliyan

 



[qmailtoaster] Re: disable spam assasin

2011-02-03 Thread Eric Shubert
Right in line with with Super Bowl, you can alternatively configure a 
service to stay off with a "touch down" command. ;) For instance,

# cd /var/qmail/supervise/clamd
# touch down
# cd log
# touch down
Go Pack Go! :)
--
-Eric 'shubes'

On 02/02/2011 11:49 PM, Administrator wrote:

Edward,

Read here for more:
http://www.mail-archive.com/qmailtoaster-list@qmailtoaster.com/msg17904.html

PakOgah wrote:

copy paste this script dont forget to chmod +x

#!/bin/bash
echo "Stopping spamd"
svc -d /var/qmail/supervise/spamd /var/qmail/supervise/spamd/log
echo "Stopping clamd"
svc -d /var/qmail/supervise/clamd /var/qmail/supervise/clamd/log
sleep 2
echo
svstat /var/qmail/supervise/spamd
svstat /var/qmail/supervise/spamd/log
echo
svstat /var/qmail/supervise/clamd
svstat /var/qmail/supervise/clamd/log

Bogdan Peptine wrote:

Hello,


And how can i disable clamd and spamd from starting if qmail is
not useing them anymore

Thanks
Bogda


Marco Volkert
Network Administrator
---
PROMAN
Gesellschaft für Projektmanagement mbH

E-Mail: ad...@proman.org 
Website: http://www.proman.org
---


Am 02.02.2011 17:33, schrieb Edward Finlayson:


Hi all,

I recently installed toaster on a centos 5 x64 system and
inadvertently enabled spam checking. I now need to disable it
completely for this system. My question is how can clamav and spam
assassin be completely removed / switched off. I have tried various
thing but incoming mail is still being parsed. I just want this part
of toaster gone, any ideas??

Thanks in advance,

Fin





-
Qmailtoaster is sponsored by Vickers Consulting Group 
(www.vickersconsulting.com)
   Vickers Consulting Group offers Qmailtoaster support and installations.
 If you need professional help with your setup, contact them today!
-
Please visit qmailtoaster.com for the latest news, updates, and packages.

 To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com

For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com




[qmailtoaster] Re: Mail bouncing from particular domain

2011-02-03 Thread Eric Shubert

On 02/03/2011 04:34 AM, Bharath Chari wrote:

On 02/03/2011 01:57 PM, Amit wrote:

Hi Eric,

Even I checked from same from my some other QMT server but it is
giving same
error. Seems like Remote Server is not accepting EHLO command. But when I
try with HELO instead of EHLO command than Remote Server is responding
properly.

Don't know whether I'm correct or not but I think QMT should try to
connect
remote server using HELO hand shaking if EHLO hand shaking is not
working.

Amit Dalia


As you rightly pointed out, QMT should fall back to HELO, since the
receiving server is not disconnecting immediately after EHLO, as some
servers do.

However, the receiving server clearly advertises itself with ESMTP in
the text (incorrectly IMHO). Could this be the reason for the failure?

Bharath

-


That would be my thinking, but I admit that I'm not intimately familiar 
with the RFCs and protocol. This case would need some close examination 
to determine which end isn't following the rules. If it ends up that QMT 
has a problem, I'd be surprised, and eager to get it fixed. My guess is 
that the simplest fix will be communicating with the administrator of 
the receiving end to determine what exactly is wrong.


--
-Eric 'shubes'


-
Qmailtoaster is sponsored by Vickers Consulting Group 
(www.vickersconsulting.com)
   Vickers Consulting Group offers Qmailtoaster support and installations.
 If you need professional help with your setup, contact them today!
-
Please visit qmailtoaster.com for the latest news, updates, and packages.

 To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com

For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com




Re: [qmailtoaster] Re: Mail bouncing from particular domain

2011-02-03 Thread Bharath Chari

On 02/03/2011 01:57 PM, Amit wrote:

Hi Eric,

Even I checked from same from my some other QMT server but it is giving same
error. Seems like Remote Server is not accepting EHLO command. But when I
try with HELO instead of EHLO command than Remote Server is responding
properly.

Don't know whether I'm correct or not but I think QMT should try to connect
remote server using HELO hand shaking if EHLO hand shaking is not working.

Amit Dalia

As you rightly pointed out, QMT should fall back to HELO, since the 
receiving server is not disconnecting immediately after EHLO, as some 
servers do.


However, the receiving server clearly advertises itself with ESMTP in 
the text (incorrectly IMHO). Could this be the reason for the failure?


Bharath

-
Qmailtoaster is sponsored by Vickers Consulting Group 
(www.vickersconsulting.com)
   Vickers Consulting Group offers Qmailtoaster support and installations.
 If you need professional help with your setup, contact them today!
-
Please visit qmailtoaster.com for the latest news, updates, and packages.

 To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com

For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com




RE: [qmailtoaster] Re: Mail bouncing from particular domain

2011-02-03 Thread Amit
Hi Eric,

Even I checked from same from my some other QMT server but it is giving same
error. Seems like Remote Server is not accepting EHLO command. But when I
try with HELO instead of EHLO command than Remote Server is responding
properly.

Don't know whether I'm correct or not but I think QMT should try to connect
remote server using HELO hand shaking if EHLO hand shaking is not working.

Amit Dalia

-Original Message-
From: Eric Shubert [mailto:e...@shubes.net] 
Sent: Wednesday, February 02, 2011 8:57 PM
To: qmailtoaster-list@qmailtoaster.com
Subject: [qmailtoaster] Re: Mail bouncing from particular domain

On 02/02/2011 12:27 AM, Amit wrote:
> Hi Everyone,
>
> I'm getting the below error while sending mail to 1 particular domain.
>
>  220.225.40.101 failed on DATA command.
>
> Remote host said: 500 Syntax error, command unrecognized
>
> Mail to all other users are going properly.
>
> *Amit Dalia**
>
> *

$ host 220.225.40.101
101.40.225.220.in-addr.arpa domain name pointer maila.araiindia.com.
$ telnet maila.araiindia.com 25
Trying 220.225.40.101...
Connected to maila.araiindia.com.
Escape character is '^]'.
220 vega.araidc.local Microsoft ESMTP MAIL Service ready at Wed, 2 Feb 
2011 20:54:31 +0530
ehlo edwin.shubes.net
503 Bad sequence of commands
quit
221 2.0.0 Service closing transmission channel
Connection closed by foreign host.
$

I think I'd try to contact the admin at the destination site.

-- 
-Eric 'shubes'



-
Qmailtoaster is sponsored by Vickers Consulting Group
(www.vickersconsulting.com)
Vickers Consulting Group offers Qmailtoaster support and installations.
  If you need professional help with your setup, contact them today!

-
 Please visit qmailtoaster.com for the latest news, updates, and
packages.
 
  To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
 For additional commands, e-mail:
qmailtoaster-list-h...@qmailtoaster.com




-
Qmailtoaster is sponsored by Vickers Consulting Group 
(www.vickersconsulting.com)
Vickers Consulting Group offers Qmailtoaster support and installations.
  If you need professional help with your setup, contact them today!
-
 Please visit qmailtoaster.com for the latest news, updates, and packages.
 
  To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
 For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com