Re: [qmailtoaster] Re: need some help

2011-03-17 Thread nishant amin
thanks guys let me check on your suggestions.

regards
NIshant Amin

On Thu, Mar 17, 2011 at 6:55 PM, Eric Shubert  wrote:
> Good one, Patrick. I had forgotten about that. I believe this happens when
> you change the name associated with an account using qmailadmin. It's a bug
> in that application (I just now posted a report for that on the qmailadmin
> list, so we'll see about getting it fixed).
>
> Another, I believe more common reason for duplicate emails is an overloaded
> server, more specifically one that's taking too long to scan emails. When
> the scan time gets to be too long (typically a couple minutes or so), the
> sending server will initate a timeout. When this happens, the sending server
> re-queues the message for delivery at a later time. However, QMT doesn't
> know that, and proceeds to deliver the message. So a little later, the
> sending server tries again, and QMT dutifully processes the email. The cycle
> will continue until QMT manages to complete the scan process before the
> sending server times out, at which point QMT tells the sending server that
> it has successfully received the message.
>
> So in this case, the cure is to do some tuning with QMT to help reduce the
> load. The simplest and most effective way to do this is to use spamdyke.
> Simply run the qtp-install-spamdyke scripts, restart qmail, and you should
> be good to go. The stock configuration for spamdyke works very well, but you
> might want to adjust it a little for your particular situation.
>
> I would also check to be sure that your clamav-toaster package is up to
> date. There was a version (or 2) of clamav which would occasionally eat the
> cpu, causing load levels to be excessively high. This could also cause
> duplicate emails.
>
> If you're already running spamdyke and your clamav-toaster package is
> current, I'll be surprised. QMT can handle a boatload of email with a
> surprisingly small amount of hardware. FWIW, my first QMT was on a P-II/266
> w/ 512M RAM. It didn't host a lot of accounts, but it kept up w/out
> flinching, and that was before spamdyke came along.
>
> --
> -Eric 'shubes'
>
> On 03/17/2011 05:12 AM, Patrick Ring wrote:
>>
>> Many times this is due to something placing a second mail filter
>> statement in the .qmail file.  You need to comment one of them out.
>>
>>
>> -Original Message-
>> From: nishant amin [mailto:igonish...@gmail.com]
>> Sent: Thursday, March 17, 2011 4:40 AM
>> To: qmailtoaster-list@qmailtoaster.com
>> Subject: [qmailtoaster] need some help
>>
>> hi all
>>
>> recently i have received some complains from users that they are
>> receiving double email in their web mail account.i dont know what
>> could cause this..could you point me in the right direction
>> your help is highly appreciated
>>
>> regards
>> NIshant Amin
>>
>> 
>> -
>> 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!
>
>
>
> -
> 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

Re: [qmailtoaster] Has anyone configured Spam buttons in webmail?

2011-03-17 Thread Pak Ogah

On 18-Mar-11 6:54, Rafael P. Abreu Rosa wrote:
I would like to configure spam buttons in squirrelmail to learn 
spamassassin.




oke here what I got on my docs

install spam buttons
This plugin will place "Spam" and/or "Not Spam" buttons on the mailbox 
message list page as well as on a single message view page. The action 
associated with the buttons (as well as the button text) can be 
configured to suit most any spam reporting system. Both reporting by 
email and reporting by executing a command on the server are supported.


http://www.squirrelmail.org/plugin_view.php?id=242

so you install the plugin the same as other squirrelmail's plugin
- download
- extract
- put on squirrelmail's plugin
- add it to squirrelmail's config

then below is my spambutton config.php compared with config.php.sample
[root@svr-m1 spam_buttons]# diff config.php config.php.sample
43c43
< $show_spam_buttons_on_message_list = 0;
---
> $show_spam_buttons_on_message_list = 1;
146,151d145
< #$is_spam_shell_command = 'sudo -u root /usr/bin/sa-learn --spam';
< #$is_not_spam_shell_command = 'sudo -u root /usr/bin/sa-learn --ham';
< $is_spam_shell_command = 'sudo -u vpopmail -H /usr/bin/sa-learn --spam';
< $is_not_spam_shell_command = 'sudo -u vpopmail -H /usr/bin/sa-learn 
--ham';

<
< //
157,158c151,152
< //$is_spam_shell_command = '/usr/bin/sa-learn --spam';
< //$is_not_spam_shell_command = '/usr/bin/sa-learn --ham';
---
> $is_spam_shell_command = '';
> $is_not_spam_shell_command = '';

the summary is, to make SA learn spam/ham from other account you need to 
invoke this command

sudo -u vpopmail -H /usr/bin/sa-learn --spam
sudo -u vpopmail -H /usr/bin/sa-learn --ham

you may want also maintain your Spam folder inside webmail.
see http://wiki.qmailtoaster.com/index.php/Maintain_Trash_and_Spam_folder


-
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] Has anyone configured Spam buttons in webmail?

2011-03-17 Thread Pak Ogah

On 18-Mar-11 6:54, Rafael P. Abreu Rosa wrote:
I would like to configure spam buttons in squirrelmail to learn 
spamassassin.



I have implement this before, but then I remove the feature
have you try to look at wiki/archive?
I'll look at my documentation and if there any.


-
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] QControl

2011-03-17 Thread Jake Vickers

On 03/17/2011 05:31 PM, sysad...@tricubemedia.com wrote:

Hi list,
can some one tell me how to remove "

QControlIPE

I have tried rpm -e
I get : error: package QControlPE-1.1-1.0.2.noarch.rpm is not installed
I tried rpm -q QControlPE-1.1-1.0.2.noarch.rpm

error: package QControlPE-1.1-1.0.2.noarch.rpm is not installed



I'm in the middle of a presentation, so bear with the brevity.
Normally it is:
rpm -e QControlPE

What does "rpm -qa | grep -i control" show?


-
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] Has anyone configured Spam buttons in webmail?

2011-03-17 Thread Rafael P. Abreu Rosa
I would like to configure spam buttons in squirrelmail to learn 
spamassassin.


--


Rafael Pereira de Abreu Rosa
-
Técnico de Laboratório do Instituto de Computação
(21) 2629-5664
supo...@ic.uff.br



-
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: QControl

2011-03-17 Thread Eric Shubert

On 03/17/2011 02:31 PM, sysad...@tricubemedia.com wrote:

Hi list,
can some one tell me how to remove "

QControlIPE

I have tried rpm -e
I get : error: package QControlPE-1.1-1.0.2.noarch.rpm is not installed
I tried rpm -q QControlPE-1.1-1.0.2.noarch.rpm

error: package QControlPE-1.1-1.0.2.noarch.rpm is not installed


Thanks


-


What do you get when you do:
# rpm -qa | grep -i qcontrol
?

--
-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] QControl

2011-03-17 Thread sysadmin
Hi list,
can some one tell me how to remove "

QControlIPE

I have tried rpm -e
I get : error: package QControlPE-1.1-1.0.2.noarch.rpm is not installed
I tried rpm -q QControlPE-1.1-1.0.2.noarch.rpm

error: package QControlPE-1.1-1.0.2.noarch.rpm is not installed


Thanks


-
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: Anyone tried Sogo?

2011-03-17 Thread Martin Waschbuesch
Sogo indeed supports tls (and ssl) login using plain auto.

Martin

Von meinem iPhone gesendet

Am 17.03.2011 um 17:55 schrieb Eric Shubert :

> On 03/17/2011 09:44 AM, Bharath Chari wrote:
>> On 03/17/2011 09:37 PM, Eric Shubert wrote:
>>> On 03/17/2011 08:52 AM, Bharath Chari wrote:
 On 03/17/2011 07:42 PM, Carlos Herrera Polo wrote:
> Sogo looks excelent I should install from RPM or sources ??
> We have to make a lot of changes ?? Or not ??... Qmailtoaster is a
> great MTA... and groupware software is a plus
> 
> 2011/3/17 Martin Waschbuesch  >
> 
> Hi guys,
> 
> I have successfully installed sogo on my toaster, but there are
> some issues I still need to work on:
> 
> - Auth-backend is ldap and I failed terribly at any attempt to
> have more than one mail domain reflected in the ldap tree
> - i had to manually set up the ldap tree to reflect that one domain
> 
> Luckily, it still solves my immediate problem as I had a
> requirement to offer CalDAV & CardDAV support. Works like a charm!
> 
>  I don't even know what language(s) sogo's written in. I'm
> guessing
>  the authentication part (at least) is c/c++, but it could be
>  something else. Would someone like to find out?
> 
> >>> Should not be to difficult to do this, even a view might do
> the trick..
> >>> Sogo is written in Objective-C btw..
> >>>
> >>> Will do some tests soon..
> >>>
> >>> JP
> >>>
> >> My thought (after my earlier post), was to rig up a view in
> MySQL with
> >> appropriate field names, so as not to mess around with sogo
> code. Should
> >> be doable in a single domain situation. Will run tests after I
> get sogo
> >> set up, and post results.
> >>
> >> Bharath
> >>
> 
 I had a doubt that Sogo may not support md5crypt, which is how the
 passwords are stored in the vpopmail database. It looks like that is the
 case.
 
 See this link:
 
 http://mail.opengroupware.org/pipermail/sogo/2010-February/005083.html
 
 I haven't found any later references that say that sogo supports
 md5crypt, so it looks like the sogo code WILL have to be patched for
 authentication against the vpopmail mysql database. Please note that the
 patch in the link may be against an earlier release.
 
 Bharath
>>> 
>>> Does sogo support plain login with TLS/SSL? If so, that should work.
>>> 
>>> While patching sogo is probably more attractive than patching
>>> vpopmail, perhaps we should make a request to have vpopmail support
>>> whatever it is that sogo is using. (I'm guessing digest-md5).
>>> 
>> An _ugly_ workaround would be to use stunnel. Doesn't make too much
>> sense on localhost though, does it? So, cleartext from a trusted
>> (localhost) connection may be the simplest way to achieve this. Initial
>> thoughts only, so don't hold it against me :)
>> 
>> Bharath
>> 
>> -
> 
> I don't have a problem using plain login w/ TLS. In fact, I would use TLS 
> with localhost as well (just so I know it works because I'd likely move it to 
> a separate host at some point).
> 
> As long as TLS (or SSL, but I prefer TLS) is used, plain logins are ok, as 
> passwords are not sent in clear text over the wire this way.
> 
> The only problem I see with plain logins is that passwords are stored in 
> clear text. I don't necessarily recommend this, and it can be a problem in 
> some situations. Changing this policy though is a bigger change, and should 
> be addressed on its own. Personally, I wouldn't mind seeing QMT move in this 
> direction (eliminating the storing of passwords in clear text). We need to be 
> sure though that in so doing that all of the other bases (encrypted password 
> types) are covered.
> 
> -- 
> -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!
-

Re: [qmailtoaster] Re: Anyone tried Sogo?

2011-03-17 Thread Bharath Chari

On 03/17/2011 10:25 PM, Eric Shubert wrote:

On 03/17/2011 09:44 AM, Bharath Chari wrote:

On 03/17/2011 09:37 PM, Eric Shubert wrote:

On 03/17/2011 08:52 AM, Bharath Chari wrote:

On 03/17/2011 07:42 PM, Carlos Herrera Polo wrote:

Sogo looks excelent I should install from RPM or sources ??
We have to make a lot of changes ?? Or not ??... Qmailtoaster is a
great MTA... and groupware software is a plus

2011/3/17 Martin Waschbuesch mailto:mar...@waschbuesch.de>>

Hi guys,

I have successfully installed sogo on my toaster, but there are
some issues I still need to work on:

- Auth-backend is ldap and I failed terribly at any attempt to
have more than one mail domain reflected in the ldap tree
- i had to manually set up the ldap tree to reflect that one domain

Luckily, it still solves my immediate problem as I had a
requirement to offer CalDAV & CardDAV support. Works like a charm!

 I don't even know what language(s) sogo's written in. I'm
guessing
 the authentication part (at least) is c/c++, but it could be
 something else. Would someone like to find out?

>>> Should not be to difficult to do this, even a view might do
the trick..
>>> Sogo is written in Objective-C btw..
>>>
>>> Will do some tests soon..
>>>
>>> JP
>>>
>> My thought (after my earlier post), was to rig up a view in
MySQL with
>> appropriate field names, so as not to mess around with sogo
code. Should
>> be doable in a single domain situation. Will run tests after I
get sogo
>> set up, and post results.
>>
>> Bharath
>>


I had a doubt that Sogo may not support md5crypt, which is how the
passwords are stored in the vpopmail database. It looks like that 
is the

case.

See this link:

http://mail.opengroupware.org/pipermail/sogo/2010-February/005083.html

I haven't found any later references that say that sogo supports
md5crypt, so it looks like the sogo code WILL have to be patched for
authentication against the vpopmail mysql database. Please note 
that the

patch in the link may be against an earlier release.

Bharath


Does sogo support plain login with TLS/SSL? If so, that should work.

While patching sogo is probably more attractive than patching
vpopmail, perhaps we should make a request to have vpopmail support
whatever it is that sogo is using. (I'm guessing digest-md5).


An _ugly_ workaround would be to use stunnel. Doesn't make too much
sense on localhost though, does it? So, cleartext from a trusted
(localhost) connection may be the simplest way to achieve this. Initial
thoughts only, so don't hold it against me :)

Bharath

- 



I don't have a problem using plain login w/ TLS. In fact, I would use 
TLS with localhost as well (just so I know it works because I'd likely 
move it to a separate host at some point).


As long as TLS (or SSL, but I prefer TLS) is used, plain logins are 
ok, as passwords are not sent in clear text over the wire this way.


The only problem I see with plain logins is that passwords are stored 
in clear text. I don't necessarily recommend this, and it can be a 
problem in some situations. Changing this policy though is a bigger 
change, and should be addressed on its own. Personally, I wouldn't 
mind seeing QMT move in this direction (eliminating the storing of 
passwords in clear text). We need to be sure though that in so doing 
that all of the other bases (encrypted password types) are covered.


I think we are in complete agreement on this. I'll have to do some 
homework on what Sogo can/cannot do in this context. Documentation seems 
to suggest that TLS is available.


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




[qmailtoaster] Re: Anyone tried Sogo?

2011-03-17 Thread Eric Shubert

On 03/17/2011 09:44 AM, Bharath Chari wrote:

On 03/17/2011 09:37 PM, Eric Shubert wrote:

On 03/17/2011 08:52 AM, Bharath Chari wrote:

On 03/17/2011 07:42 PM, Carlos Herrera Polo wrote:

Sogo looks excelent I should install from RPM or sources ??
We have to make a lot of changes ?? Or not ??... Qmailtoaster is a
great MTA... and groupware software is a plus

2011/3/17 Martin Waschbuesch mailto:mar...@waschbuesch.de>>

Hi guys,

I have successfully installed sogo on my toaster, but there are
some issues I still need to work on:

- Auth-backend is ldap and I failed terribly at any attempt to
have more than one mail domain reflected in the ldap tree
- i had to manually set up the ldap tree to reflect that one domain

Luckily, it still solves my immediate problem as I had a
requirement to offer CalDAV & CardDAV support. Works like a charm!

 I don't even know what language(s) sogo's written in. I'm
guessing
 the authentication part (at least) is c/c++, but it could be
 something else. Would someone like to find out?

>>> Should not be to difficult to do this, even a view might do
the trick..
>>> Sogo is written in Objective-C btw..
>>>
>>> Will do some tests soon..
>>>
>>> JP
>>>
>> My thought (after my earlier post), was to rig up a view in
MySQL with
>> appropriate field names, so as not to mess around with sogo
code. Should
>> be doable in a single domain situation. Will run tests after I
get sogo
>> set up, and post results.
>>
>> Bharath
>>


I had a doubt that Sogo may not support md5crypt, which is how the
passwords are stored in the vpopmail database. It looks like that is the
case.

See this link:

http://mail.opengroupware.org/pipermail/sogo/2010-February/005083.html

I haven't found any later references that say that sogo supports
md5crypt, so it looks like the sogo code WILL have to be patched for
authentication against the vpopmail mysql database. Please note that the
patch in the link may be against an earlier release.

Bharath


Does sogo support plain login with TLS/SSL? If so, that should work.

While patching sogo is probably more attractive than patching
vpopmail, perhaps we should make a request to have vpopmail support
whatever it is that sogo is using. (I'm guessing digest-md5).


An _ugly_ workaround would be to use stunnel. Doesn't make too much
sense on localhost though, does it? So, cleartext from a trusted
(localhost) connection may be the simplest way to achieve this. Initial
thoughts only, so don't hold it against me :)

Bharath

-


I don't have a problem using plain login w/ TLS. In fact, I would use 
TLS with localhost as well (just so I know it works because I'd likely 
move it to a separate host at some point).


As long as TLS (or SSL, but I prefer TLS) is used, plain logins are ok, 
as passwords are not sent in clear text over the wire this way.


The only problem I see with plain logins is that passwords are stored in 
clear text. I don't necessarily recommend this, and it can be a problem 
in some situations. Changing this policy though is a bigger change, and 
should be addressed on its own. Personally, I wouldn't mind seeing QMT 
move in this direction (eliminating the storing of passwords in clear 
text). We need to be sure though that in so doing that all of the other 
bases (encrypted password types) are covered.


--
-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: Anyone tried Sogo?

2011-03-17 Thread Bharath Chari

On 03/17/2011 09:37 PM, Eric Shubert wrote:

On 03/17/2011 08:52 AM, Bharath Chari wrote:

On 03/17/2011 07:42 PM, Carlos Herrera Polo wrote:

Sogo looks excelent I should install from RPM or sources ??
We have to make a lot of changes ?? Or not ??... Qmailtoaster is a
great MTA... and groupware software is a plus

2011/3/17 Martin Waschbuesch mailto:mar...@waschbuesch.de>>

Hi guys,

I have successfully installed sogo on my toaster, but there are
some issues I still need to work on:

- Auth-backend is ldap and I failed terribly at any attempt to
have more than one mail domain reflected in the ldap tree
- i had to manually set up the ldap tree to reflect that one domain

Luckily, it still solves my immediate problem as I had a
requirement to offer CalDAV & CardDAV support. Works like a charm!

 I don't even know what language(s) sogo's written in. I'm
guessing
 the authentication part (at least) is c/c++, but it could be
 something else. Would someone like to find out?

>>> Should not be to difficult to do this, even a view might do
the trick..
>>> Sogo is written in Objective-C btw..
>>>
>>> Will do some tests soon..
>>>
>>> JP
>>>
>> My thought (after my earlier post), was to rig up a view in
MySQL with
>> appropriate field names, so as not to mess around with sogo
code. Should
>> be doable in a single domain situation. Will run tests after I
get sogo
>> set up, and post results.
>>
>> Bharath
>>


I had a doubt that Sogo may not support md5crypt, which is how the
passwords are stored in the vpopmail database. It looks like that is the
case.

See this link:

http://mail.opengroupware.org/pipermail/sogo/2010-February/005083.html

I haven't found any later references that say that sogo supports
md5crypt, so it looks like the sogo code WILL have to be patched for
authentication against the vpopmail mysql database. Please note that the
patch in the link may be against an earlier release.

Bharath


Does sogo support plain login with TLS/SSL? If so, that should work.

While patching sogo is probably more attractive than patching 
vpopmail, perhaps we should make a request to have vpopmail support 
whatever it is that sogo is using. (I'm guessing digest-md5).


An _ugly_ workaround would be to use stunnel. Doesn't make too much 
sense on localhost though, does it? So, cleartext from a trusted 
(localhost) connection may be the simplest way to achieve this. Initial 
thoughts only, so don't hold it against me :)


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




[qmailtoaster] Re: Anyone tried Sogo?

2011-03-17 Thread Eric Shubert

On 03/17/2011 08:52 AM, Bharath Chari wrote:

On 03/17/2011 07:42 PM, Carlos Herrera Polo wrote:

Sogo looks excelent I should install from RPM or sources ??
We have to make a lot of changes ?? Or not ??... Qmailtoaster is a
great MTA... and groupware software is a plus

2011/3/17 Martin Waschbuesch mailto:mar...@waschbuesch.de>>

Hi guys,

I have successfully installed sogo on my toaster, but there are
some issues I still need to work on:

- Auth-backend is ldap and I failed terribly at any attempt to
have more than one mail domain reflected in the ldap tree
- i had to manually set up the ldap tree to reflect that one domain

Luckily, it still solves my immediate problem as I had a
requirement to offer CalDAV & CardDAV support. Works like a charm!

 I don't even know what language(s) sogo's written in. I'm
guessing
 the authentication part (at least) is c/c++, but it could be
 something else. Would someone like to find out?

>>> Should not be to difficult to do this, even a view might do
the trick..
>>> Sogo is written in Objective-C btw..
>>>
>>> Will do some tests soon..
>>>
>>> JP
>>>
>> My thought (after my earlier post), was to rig up a view in
MySQL with
>> appropriate field names, so as not to mess around with sogo
code. Should
>> be doable in a single domain situation. Will run tests after I
get sogo
>> set up, and post results.
>>
>> Bharath
>>


I had a doubt that Sogo may not support md5crypt, which is how the
passwords are stored in the vpopmail database. It looks like that is the
case.

See this link:

http://mail.opengroupware.org/pipermail/sogo/2010-February/005083.html

I haven't found any later references that say that sogo supports
md5crypt, so it looks like the sogo code WILL have to be patched for
authentication against the vpopmail mysql database. Please note that the
patch in the link may be against an earlier release.

Bharath


Does sogo support plain login with TLS/SSL? If so, that should work.

While patching sogo is probably more attractive than patching vpopmail, 
perhaps we should make a request to have vpopmail support whatever it is 
that sogo is using. (I'm guessing digest-md5).


--
-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: Anyone tried Sogo?

2011-03-17 Thread Bharath Chari

On 03/17/2011 09:22 PM, Bharath Chari wrote:

On 03/17/2011 07:42 PM, Carlos Herrera Polo wrote:

Sogo looks excelent I should install from RPM or sources ??
We have to make a lot of changes ?? Or not ??... Qmailtoaster is a 
great MTA... and groupware software is a plus


2011/3/17 Martin Waschbuesch >


Hi guys,

I have successfully installed sogo on my toaster, but there are
some issues I still need to work on:

- Auth-backend is ldap and I failed terribly at any attempt to
have more than one mail domain reflected in the ldap tree
- i had to manually set up the ldap tree to reflect that one domain

Luckily, it still solves my immediate problem as I had a
requirement to offer CalDAV & CardDAV support. Works like a charm!

 I don't even know what language(s) sogo's written in. I'm
guessing
 the authentication part (at least) is c/c++, but it could be
 something else. Would someone like to find out?

>>> Should not be to difficult to do this, even a view might do
the trick..
>>> Sogo is written in Objective-C btw..
>>>
>>> Will do some tests soon..
>>>
>>> JP
>>>
>> My thought (after my earlier post), was to rig up a view in
MySQL with
>> appropriate field names, so as not to mess around with sogo
code. Should
>> be doable in a single domain situation. Will run tests after I
get sogo
>> set up, and post results.
>>
>> Bharath
>>

I had a doubt that Sogo may not support md5crypt, which is how the 
passwords are stored in the vpopmail database. It looks like that is 
the case.


See this link:

http://mail.opengroupware.org/pipermail/sogo/2010-February/005083.html

I haven't found any later references that say that sogo supports 
md5crypt, so it looks like the sogo code WILL have to be patched for 
authentication against the vpopmail mysql database. Please note that 
the patch in the link may be against an earlier release.


Bharath
Of course, if cleartext is used to transmit the passwords then that may 
not be an issue.


Bharath


[qmailtoaster] Re: need some help

2011-03-17 Thread Eric Shubert
Good one, Patrick. I had forgotten about that. I believe this happens 
when you change the name associated with an account using qmailadmin. 
It's a bug in that application (I just now posted a report for that on 
the qmailadmin list, so we'll see about getting it fixed).


Another, I believe more common reason for duplicate emails is an 
overloaded server, more specifically one that's taking too long to scan 
emails. When the scan time gets to be too long (typically a couple 
minutes or so), the sending server will initate a timeout. When this 
happens, the sending server re-queues the message for delivery at a 
later time. However, QMT doesn't know that, and proceeds to deliver the 
message. So a little later, the sending server tries again, and QMT 
dutifully processes the email. The cycle will continue until QMT manages 
to complete the scan process before the sending server times out, at 
which point QMT tells the sending server that it has successfully 
received the message.


So in this case, the cure is to do some tuning with QMT to help reduce 
the load. The simplest and most effective way to do this is to use 
spamdyke. Simply run the qtp-install-spamdyke scripts, restart qmail, 
and you should be good to go. The stock configuration for spamdyke works 
very well, but you might want to adjust it a little for your particular 
situation.


I would also check to be sure that your clamav-toaster package is up to 
date. There was a version (or 2) of clamav which would occasionally eat 
the cpu, causing load levels to be excessively high. This could also 
cause duplicate emails.


If you're already running spamdyke and your clamav-toaster package is 
current, I'll be surprised. QMT can handle a boatload of email with a 
surprisingly small amount of hardware. FWIW, my first QMT was on a 
P-II/266 w/ 512M RAM. It didn't host a lot of accounts, but it kept up 
w/out flinching, and that was before spamdyke came along.


--
-Eric 'shubes'

On 03/17/2011 05:12 AM, Patrick Ring wrote:

Many times this is due to something placing a second mail filter
statement in the .qmail file.  You need to comment one of them out.


-Original Message-
From: nishant amin [mailto:igonish...@gmail.com]
Sent: Thursday, March 17, 2011 4:40 AM
To: qmailtoaster-list@qmailtoaster.com
Subject: [qmailtoaster] need some help

hi all

recently i have received some complains from users that they are
receiving double email in their web mail account.i dont know what
could cause this..could you point me in the right direction
your help is highly appreciated

regards
NIshant Amin


-
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!




-
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: Anyone tried Sogo?

2011-03-17 Thread Bharath Chari

On 03/17/2011 07:42 PM, Carlos Herrera Polo wrote:

Sogo looks excelent I should install from RPM or sources ??
We have to make a lot of changes ?? Or not ??... Qmailtoaster is a 
great MTA... and groupware software is a plus


2011/3/17 Martin Waschbuesch >


Hi guys,

I have successfully installed sogo on my toaster, but there are
some issues I still need to work on:

- Auth-backend is ldap and I failed terribly at any attempt to
have more than one mail domain reflected in the ldap tree
- i had to manually set up the ldap tree to reflect that one domain

Luckily, it still solves my immediate problem as I had a
requirement to offer CalDAV & CardDAV support. Works like a charm!

 I don't even know what language(s) sogo's written in. I'm
guessing
 the authentication part (at least) is c/c++, but it could be
 something else. Would someone like to find out?

>>> Should not be to difficult to do this, even a view might do
the trick..
>>> Sogo is written in Objective-C btw..
>>>
>>> Will do some tests soon..
>>>
>>> JP
>>>
>> My thought (after my earlier post), was to rig up a view in
MySQL with
>> appropriate field names, so as not to mess around with sogo
code. Should
>> be doable in a single domain situation. Will run tests after I
get sogo
>> set up, and post results.
>>
>> Bharath
>>

I had a doubt that Sogo may not support md5crypt, which is how the 
passwords are stored in the vpopmail database. It looks like that is the 
case.


See this link:

http://mail.opengroupware.org/pipermail/sogo/2010-February/005083.html

I haven't found any later references that say that sogo supports 
md5crypt, so it looks like the sogo code WILL have to be patched for 
authentication against the vpopmail mysql database. Please note that the 
patch in the link may be against an earlier release.


Bharath


Re: [qmailtoaster] Re: Anyone tried Sogo?

2011-03-17 Thread Carlos Herrera Polo
Sogo looks excelent I should install from RPM or sources ??
We have to make a lot of changes ?? Or not ??... Qmailtoaster is a great
MTA... and groupware software is a plus

2011/3/17 Martin Waschbuesch 

> Hi guys,
>
> I have successfully installed sogo on my toaster, but there are some issues
> I still need to work on:
>
> - Auth-backend is ldap and I failed terribly at any attempt to have more
> than one mail domain reflected in the ldap tree
> - i had to manually set up the ldap tree to reflect that one domain
>
> Luckily, it still solves my immediate problem as I had a requirement to
> offer CalDAV & CardDAV support. Works like a charm!
>
> Martin
>
> PS: SOGo is completely written (apart from the Web-portion) in Objective-C
> using the GNUStep environment. Apple has excellent documentation on
> Objective-C as has the GNUStep project.
>
> --
> "I am fond of pigs. Dogs look up to us. Cats look down on us. Pigs treat us
> as equals."
>
> Winston Churchill
>
> Am 15.03.2011 um 23:15 schrieb Eric Shubert:
>
> > On 03/15/2011 03:09 PM, Bharath Chari wrote:
> >> On 03/15/2011 08:20 PM, Jean-Paul van de Plasse wrote:
> >>> On 15 mrt 2011, at 15:47, Eric Shubert wrote:
> >>>
>  On 03/15/2011 07:21 AM, Bharath Chari wrote:
> > On 03/15/2011 07:39 PM, Eric Shubert wrote:
> >> Can sogo not use mysql for authentication?
> >>
> >> Worst case, I would think you could run them side-by-side with
> >> separate user definitions. Would just need to maintain user
> >> definitions in 2 different places.
> >>
> > Anyone up for trying this? I'll try it out in a few days.
> >
> >
> http://andries.filmer.nl/kb/Scalable-Open-Groupware-Org-SOGo/124#Configure%20SOGo%20to%20use%20MySQL
> >
> >
> >
> > Bharath
> >
> >
> -
> >
>  I'm sure this would work. It's only slightly better than using ldap
>  though, as a separate table/database appears to be required.
> 
>  I'd rather modify the sogo source to obtain the authentication
>  fields/values from the vpopmail database. Should be doable, but the
>  ease of doing so will depend on how well the code is written. Perhaps
>  if we were able to patch an option for vpopmail into sogo, they'd
>  include it in the package.
> 
>  I don't even know what language(s) sogo's written in. I'm guessing
>  the authentication part (at least) is c/c++, but it could be
>  something else. Would someone like to find out?
> 
> >>> Should not be to difficult to do this, even a view might do the trick..
> >>> Sogo is written in Objective-C btw..
> >>>
> >>> Will do some tests soon..
> >>>
> >>> JP
> >>>
> >> My thought (after my earlier post), was to rig up a view in MySQL with
> >> appropriate field names, so as not to mess around with sogo code. Should
> >> be doable in a single domain situation. Will run tests after I get sogo
> >> set up, and post results.
> >>
> >> Bharath
> >>
> >>
> -
> >
> > Thanks, Bharath. I'm eager to hear your results.
> >
> > --
> > -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
>
>
>


RE: [qmailtoaster] need some help

2011-03-17 Thread Patrick Ring
Many times this is due to something placing a second mail filter
statement in the .qmail file.  You need to comment one of them out.


-Original Message-
From: nishant amin [mailto:igonish...@gmail.com] 
Sent: Thursday, March 17, 2011 4:40 AM
To: qmailtoaster-list@qmailtoaster.com
Subject: [qmailtoaster] need some help

hi all

recently i have received some complains from users that they are
receiving double email in their web mail account.i dont know what
could cause this..could you point me in the right direction
your help is highly appreciated

regards
NIshant Amin


-
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: Anyone tried Sogo?

2011-03-17 Thread Martin Waschbuesch
Hi guys,

I have successfully installed sogo on my toaster, but there are some issues I 
still need to work on:

- Auth-backend is ldap and I failed terribly at any attempt to have more than 
one mail domain reflected in the ldap tree
- i had to manually set up the ldap tree to reflect that one domain

Luckily, it still solves my immediate problem as I had a requirement to offer 
CalDAV & CardDAV support. Works like a charm!

Martin

PS: SOGo is completely written (apart from the Web-portion) in Objective-C 
using the GNUStep environment. Apple has excellent documentation on Objective-C 
as has the GNUStep project.

--
"I am fond of pigs. Dogs look up to us. Cats look down on us. Pigs treat us as 
equals."

Winston Churchill

Am 15.03.2011 um 23:15 schrieb Eric Shubert:

> On 03/15/2011 03:09 PM, Bharath Chari wrote:
>> On 03/15/2011 08:20 PM, Jean-Paul van de Plasse wrote:
>>> On 15 mrt 2011, at 15:47, Eric Shubert wrote:
>>> 
 On 03/15/2011 07:21 AM, Bharath Chari wrote:
> On 03/15/2011 07:39 PM, Eric Shubert wrote:
>> Can sogo not use mysql for authentication?
>> 
>> Worst case, I would think you could run them side-by-side with
>> separate user definitions. Would just need to maintain user
>> definitions in 2 different places.
>> 
> Anyone up for trying this? I'll try it out in a few days.
> 
> http://andries.filmer.nl/kb/Scalable-Open-Groupware-Org-SOGo/124#Configure%20SOGo%20to%20use%20MySQL
> 
> 
> 
> Bharath
> 
> -
> 
 I'm sure this would work. It's only slightly better than using ldap
 though, as a separate table/database appears to be required.
 
 I'd rather modify the sogo source to obtain the authentication
 fields/values from the vpopmail database. Should be doable, but the
 ease of doing so will depend on how well the code is written. Perhaps
 if we were able to patch an option for vpopmail into sogo, they'd
 include it in the package.
 
 I don't even know what language(s) sogo's written in. I'm guessing
 the authentication part (at least) is c/c++, but it could be
 something else. Would someone like to find out?
 
>>> Should not be to difficult to do this, even a view might do the trick..
>>> Sogo is written in Objective-C btw..
>>> 
>>> Will do some tests soon..
>>> 
>>> JP
>>> 
>> My thought (after my earlier post), was to rig up a view in MySQL with
>> appropriate field names, so as not to mess around with sogo code. Should
>> be doable in a single domain situation. Will run tests after I get sogo
>> set up, and post results.
>> 
>> Bharath
>> 
>> -
> 
> Thanks, Bharath. I'm eager to hear your results.
> 
> -- 
> -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] need some help

2011-03-17 Thread nishant amin
hi all

recently i have received some complains from users that they are
receiving double email in their web mail account.i dont know what
could cause this..could you point me in the right direction
your help is highly appreciated

regards
NIshant Amin

-
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