RE: [qmailtoaster] Running qmail smtp on multiple ports

2006-02-15 Thread Alex








Thank you, I will try that. Will the same
instructions work for users connecting to regular smtp if I want it to run on port 464?

 

-Original Message-
From: Erik Espinoza
[mailto:[EMAIL PROTECTED] 
Sent: Wednesday, February 15, 2006
2:32 PM
To:
qmailtoaster-list@qmailtoaster.com
Subject: Re: [qmailtoaster]
Running qmail smtp on multiple ports

 

1) First stop qmail: "service qmail stop"

2) Now run this command: "mkdir -p
/var/qmail/supervise/smtp-ssl/supervise 
/var/qmail/supervise/smtp-ssl/log/supervise" 

3) Create a file called "/var/qmail/supervise/smtp-ssl/run"
with the following contents
#!/bin/sh
QMAILDUID=`id -u vpopmail`
NOFILESGID=`id -g vpopmail`
MAXSMTPD=`cat /var/qmail/control/concurrencyincoming`
BLACKLIST=`cat /var/qmail/control/blacklists`
SMTPD="/var/qmail/bin/qmail-smtpd"
TCP_CDB="/etc/tcprules.d/tcp.smtp.cdb"
RBLSMTPD="/usr/bin/rblsmtpd"
HOSTNAME=`hostname`
VCHKPW="/home/vpopmail/bin/vchkpw" 
SMTPS=1
export SMTPS

exec /usr/bin/softlimit -m 1200 \
    /usr/bin/tcpserver -v -R -H -l $HOSTNAME -x $TCP_CDB -c
"$MAXSMTPD" \ 
    -u "$QMAILDUID" -g "$NOFILESGID" 0 465 \
    $RBLSMTPD $BLACKLIST $SMTPD $VCHKPW /bin/true 2>&1 

4) Create a file called "/var/qmail/supervise/smtp-ssl/log/run"
with the following contents 
#!/bin/sh
LOGSIZE=`cat /var/qmail/control/logsize`
LOGCOUNT=`cat /var/qmail/control/logcount`
exec /usr/bin/setuidgid qmaill /usr/bin/multilog t s$LOGSIZE n$LOGCOUNT
/var/log/qmail/smtp-ssl 2>&1 

5) Execute the following command: "chmod
+x /var/qmail/supervise/smtp-ssl/run /var/qmail/supervise/smtp-ssl/log/run
&& chown -R qmaill:qmail /var/qmail/supervise/smtp-ssl "

6) Restart qmail: "service qmail start"

7) Open port tcp/465 in firewall if necessary. Now have the client that cannot
connect to port 25 on your machine to set his mail client to use smtp-ssl via
port 465. 

Thanks,
Erik





On 2/15/06, Alex <[EMAIL PROTECTED]>
wrote:

I mean that the isp of the user connecting to my
server is
blocking port 25 to my server.

> Not sure what you mean. Could you clarify?
>
> Do you mean your isp is blocking incoming smtp, where you can't 
> connect to port 25 from outside of your network? (Answer, run smtp on
> a different port)
>
> Do you mean your isp is blocking outgoing smtp, where your mail server
> can't connect to other mail servers on port 25? (Answer, set an smtp 
> route through your isp's mail server)
>
> Do you mean that the isp of the user connecting to your server is
> blocking port 25 to your server? (Answer, run smtp on a different port
> and configure client to use alternate port) 
>
> More information will be necessary to give you details for this
problem.
>
> Thanks,
> Erik
>
>
> On 2/15/06, Alex <[EMAIL PROTECTED] >
wrote:
> > My isp is blocking port 25 so I can not send mail through my mail
> > server. I was thinking that it should be possible to run
qmailtoaster
> > on port 25 and port 595 at the same time. 
> >
> > Anyone can show me how to do that with qmailtoaster setup on Centos
> > 4.2. Will it work with regular smtp or with smtpssl as well?
> >
> > Thank you
> >
> > 
-
> >  QmailToaster hosted by: VR Hosted

> >  
-
> > To unsubscribe, e-mail: qmailtoaster-list-
[EMAIL PROTECTED]
> > For additional commands, e-mail: qmailtoaster-list-
[EMAIL PROTECTED]
> >
> >
>
> -
>  QmailToaster hosted by: VR Hosted 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]

> For additional commands, e-mail: qmailtoaster-list-
[EMAIL PROTECTED]
>
>
>

--


- 
 QmailToaster hosted by: VR Hosted 
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



 








Re: [qmailtoaster] Squirrelmail language

2006-02-15 Thread Erik Espinoza
I believe the information is here:
http://www.squirrelmail.org/wiki/SupportingMultipleLanguages

Thanks,
Erik

On 2/15/06, Sistemas El Surtidor de Occidente S.A. de C.V.
<[EMAIL PROTECTED]> wrote:
>
>
>
> Some one can tell me, how can i change the squirrelmail language to Spanish
>
>
>
> Thanks, for help.
> --
> Este mensaje ha sido analizado por El Departamento
> de sistemas de El Surtidor de Occidente
> en busca de virus y otros contenidos peligrosos,
> Utilizando  MailScanner y se considera que está limpio.
>
>
> --
>  No virus found in this outgoing message.
>  Checked by AVG Free Edition.
>  Version: 7.1.375 / Virus Database: 267.15.9/261 - Release Date: 15/02/2006
>

-
 QmailToaster hosted by: VR Hosted 
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[qmailtoaster] Squirrelmail language

2006-02-15 Thread Sistemas El Surtidor de Occidente S.A. de C.V.








Some one
can tell me, how can i
change the squirrelmail language to Spanish

 

Thanks,
for help.





-- 
Este mensaje ha sido analizado por El Departamento
de sistemas de
El Surtidor de Occidente
en busca de virus y otros contenidos peligrosos,
Utilizando
 MailScanner y se considera que está limpio.



--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.375 / Virus Database: 267.15.9/261 - Release Date: 15/02/2006
 


Re: [qmailtoaster] Running qmail smtp on multiple ports

2006-02-15 Thread Erik Espinoza
1) First stop qmail: "service qmail stop"2) Now run this command: "mkdir -p /var/qmail/supervise/smtp-ssl/supervise  /var/qmail/supervise/smtp-ssl/log/supervise"
3) Create a file called "/var/qmail/supervise/smtp-ssl/run" with the following contents#!/bin/sh
QMAILDUID=`id -u vpopmail`NOFILESGID=`id -g vpopmail`
MAXSMTPD=`cat /var/qmail/control/concurrencyincoming`BLACKLIST=`cat /var/qmail/control/blacklists`
SMTPD="/var/qmail/bin/qmail-smtpd"TCP_CDB="/etc/tcprules.d/tcp.smtp.cdb"
RBLSMTPD="/usr/bin/rblsmtpd"HOSTNAME=`hostname`VCHKPW="/home/vpopmail/bin/vchkpw"
SMTPS=1export SMTPS
exec /usr/bin/softlimit -m 1200 \    /usr/bin/tcpserver -v -R -H -l $HOSTNAME -x $TCP_CDB -c "$MAXSMTPD" \
    -u "$QMAILDUID" -g "$NOFILESGID" 0 465 \    $RBLSMTPD $BLACKLIST $SMTPD $VCHKPW /bin/true 2>&1
4) Create a file called "/var/qmail/supervise/smtp-ssl/log/run" with the following contents
#!/bin/shLOGSIZE=`cat /var/qmail/control/logsize`
LOGCOUNT=`cat /var/qmail/control/logcount`exec /usr/bin/setuidgid qmaill /usr/bin/multilog t s$LOGSIZE n$LOGCOUNT /var/log/qmail/smtp-ssl 2>&1
5) Execute the following command: "chmod +x /var/qmail/supervise/smtp-ssl/run /var/qmail/supervise/smtp-ssl/log/run && chown -R qmaill:qmail /var/qmail/supervise/smtp-ssl
"6) Restart qmail: "service qmail start"7) Open port tcp/465 in firewall if necessary. Now have the client that cannot connect to port 25 on your machine to set his mail client to use smtp-ssl via port 465.
Thanks,ErikOn 2/15/06, Alex <[EMAIL PROTECTED]> wrote:
I mean that the isp of the user connecting to my server isblocking port 25 to my server.> Not sure what you mean. Could you clarify?>> Do you mean your isp is blocking incoming smtp, where you can't
> connect to port 25 from outside of your network? (Answer, run smtp on> a different port)>> Do you mean your isp is blocking outgoing smtp, where your mail server> can't connect to other mail servers on port 25? (Answer, set an smtp
> route through your isp's mail server)>> Do you mean that the isp of the user connecting to your server is> blocking port 25 to your server? (Answer, run smtp on a different port> and configure client to use alternate port)
>> More information will be necessary to give you details for thisproblem.>> Thanks,> Erik>>> On 2/15/06, Alex <[EMAIL PROTECTED]
> wrote:> > My isp is blocking port 25 so I can not send mail through my mail> > server. I was thinking that it should be possible to runqmailtoaster> > on port 25 and port 595 at the same time.
> >> > Anyone can show me how to do that with qmailtoaster setup on Centos> > 4.2. Will it work with regular smtp or with smtpssl as well?> >> > Thank you> >
> > -> >  QmailToaster hosted by: VR Hosted > > 
-> > To unsubscribe, e-mail: qmailtoaster-list-[EMAIL PROTECTED]> > For additional commands, e-mail: qmailtoaster-list-
[EMAIL PROTECTED]> >> >>> ->  QmailToaster hosted by: VR Hosted > -> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: qmailtoaster-list-[EMAIL PROTECTED]>>>---
 QmailToaster hosted by: VR Hosted -To unsubscribe, e-mail: 
[EMAIL PROTECTED]For additional commands, e-mail: [EMAIL PROTECTED]


Re: [qmailtoaster] Running qmail smtp on multiple ports

2006-02-15 Thread Alex
I mean that the isp of the user connecting to my server is
blocking port 25 to my server.

> Not sure what you mean. Could you clarify?
> 
> Do you mean your isp is blocking incoming smtp, where you can't
> connect to port 25 from outside of your network? (Answer, run smtp on
> a different port)
> 
> Do you mean your isp is blocking outgoing smtp, where your mail server
> can't connect to other mail servers on port 25? (Answer, set an smtp
> route through your isp's mail server)
> 
> Do you mean that the isp of the user connecting to your server is
> blocking port 25 to your server? (Answer, run smtp on a different port
> and configure client to use alternate port)
> 
> More information will be necessary to give you details for this 
problem.
> 
> Thanks,
> Erik
> 
> 
> On 2/15/06, Alex <[EMAIL PROTECTED]> wrote:
> > My isp is blocking port 25 so I can not send mail through my mail
> > server. I was thinking that it should be possible to run 
qmailtoaster
> > on port 25 and port 595 at the same time.
> >
> > Anyone can show me how to do that with qmailtoaster setup on Centos
> > 4.2. Will it work with regular smtp or with smtpssl as well?
> >
> > Thank you
> >
> > 
-
> >  QmailToaster hosted by: VR Hosted 
> > 
-
> > To unsubscribe, e-mail: qmailtoaster-list-
[EMAIL PROTECTED]
> > For additional commands, e-mail: qmailtoaster-list-
[EMAIL PROTECTED]
> >
> >
> 
> -
>  QmailToaster hosted by: VR Hosted 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: qmailtoaster-list-
[EMAIL PROTECTED]
> 
> 
> 

-- 


-
 QmailToaster hosted by: VR Hosted 
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [qmailtoaster] Running qmail smtp on multiple ports

2006-02-15 Thread Erik Espinoza
Not sure what you mean. Could you clarify?

Do you mean your isp is blocking incoming smtp, where you can't
connect to port 25 from outside of your network? (Answer, run smtp on
a different port)

Do you mean your isp is blocking outgoing smtp, where your mail server
can't connect to other mail servers on port 25? (Answer, set an smtp
route through your isp's mail server)

Do you mean that the isp of the user connecting to your server is
blocking port 25 to your server? (Answer, run smtp on a different port
and configure client to use alternate port)

More information will be necessary to give you details for this problem.

Thanks,
Erik


On 2/15/06, Alex <[EMAIL PROTECTED]> wrote:
> My isp is blocking port 25 so I can not send mail through my mail
> server. I was thinking that it should be possible to run qmailtoaster
> on port 25 and port 595 at the same time.
>
> Anyone can show me how to do that with qmailtoaster setup on Centos
> 4.2. Will it work with regular smtp or with smtpssl as well?
>
> Thank you
>
> -
>  QmailToaster hosted by: VR Hosted 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>

-
 QmailToaster hosted by: VR Hosted 
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[qmailtoaster] Running qmail smtp on multiple ports

2006-02-15 Thread Alex
My isp is blocking port 25 so I can not send mail through my mail 
server. I was thinking that it should be possible to run qmailtoaster 
on port 25 and port 595 at the same time.

Anyone can show me how to do that with qmailtoaster setup on Centos 
4.2. Will it work with regular smtp or with smtpssl as well?

Thank you

-
 QmailToaster hosted by: VR Hosted 
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [qmailtoaster] RE: vqadmin problems

2006-02-15 Thread Warren
It looks like everything (or at least most) of what is needed is
included as functions in the vmysql.c file in vpopmail.  I need to poke
through the code in spare time over the next week or two (I'm away most
of next week) and see exactly what needs to be done.  If there could be
some sort of bug list put together, I'll do my best to take a look at
what is needed and tyr to code some (all?) of it.

W

Jake Vickers wrote:
> Warren wrote:
>
>> Is it only aliases or other things as well.  I am a programmer and I
>> work for a company that does not mind me using some of my time to help
>> support the programs we use, so if I can get an idea of the scope of the
>> problem, I can look into perhaps tackling the problem.
>>  
>>
> To the best of my knowledge (I don't use VQ much) it's some HTML stuff
> (not linked to the correct external programs/options), and the fact
> that the aliases moved from .qmail files to the DB. Hopefully someone
> else can give some more detailed info
>
> -
> QmailToaster hosted by: VR Hosted 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>


-
 QmailToaster hosted by: VR Hosted 
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [qmailtoaster] OT: CentOS question

2006-02-15 Thread Jake Vickers

Nigel Reed wrote:


I've been asked to install CentOS on a machine with 4 hard disks, they
want RAID 5 on it. 3 disks plus the hot spare. My understanding is that
you cannot boot from disks that are in the RAID array but would need
it's own disk?

I'm asking here because I know many of you are using CentOS. Any tried
booting from a USB pendrive in lieu of a boot disk? How about swap, that
cannot be on a RAID partition either, right?

Appreciate follow-ups in private so not to disrupt the list too much :)
 

You CAN do it, but it's not advised. I'm assuming you're using a 
hardware RAID
It's advisable to put your boot/OS on a regular drive, so if something 
goes wrong you're not rebuilding the whole RAID. Sounds funny, but from 
my understanding that's the way it is. I use a 20G drive for 
boot/OS/swap, and use the RAID for the /home and /webpages directories. 
Just my setup.


-
QmailToaster hosted by: VR Hosted 
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [qmailtoaster] RE: vqadmin problems

2006-02-15 Thread Jake Vickers

Warren wrote:


Is it only aliases or other things as well.  I am a programmer and I
work for a company that does not mind me using some of my time to help
support the programs we use, so if I can get an idea of the scope of the
problem, I can look into perhaps tackling the problem.
 

To the best of my knowledge (I don't use VQ much) it's some HTML stuff 
(not linked to the correct external programs/options), and the fact that 
the aliases moved from .qmail files to the DB. Hopefully someone else 
can give some more detailed info


-
QmailToaster hosted by: VR Hosted 
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[qmailtoaster] OT: CentOS question

2006-02-15 Thread Nigel Reed
I've been asked to install CentOS on a machine with 4 hard disks, they
want RAID 5 on it. 3 disks plus the hot spare. My understanding is that
you cannot boot from disks that are in the RAID array but would need
it's own disk?

I'm asking here because I know many of you are using CentOS. Any tried
booting from a USB pendrive in lieu of a boot disk? How about swap, that
cannot be on a RAID partition either, right?

Appreciate follow-ups in private so not to disrupt the list too much :)

Regards
Nigel
-- 
www.myoldcontacts.com - Tell your friends to tell their friends
www.sysadmininc.com  - Consultancy, Service, Sales, Networking...
www.british-expats.com - Connect with British Expats World Wide
www.kxez.com/shows_britishinvasion.php - 9-11pm Sunday. KXEZ 92.1 FM


"I reject your reality and substitute it with my own" --Adam Savage.

-
 QmailToaster hosted by: VR Hosted 
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [qmailtoaster] RE: vqadmin problems

2006-02-15 Thread Warren
Is it only aliases or other things as well.  I am a programmer and I
work for a company that does not mind me using some of my time to help
support the programs we use, so if I can get an idea of the scope of the
problem, I can look into perhaps tackling the problem.

W

Jake Vickers wrote:
> Warren wrote:
>
>> I thought this was the QmailToaster mailing list...
>>
>> Is that the only thing that is wrong with vqadmin right now, the
>> aliases having moved to the database?
>
> It is the Toaster mailing list. Erik was just trying to let all know
> that while we're still using VqAdmin for the moment, it has problems
> as is no longer supported. An effort is underway to find a
> replacement. Until then, we limp along with what we have.
> And yes, one of the major problems is that the aliases have moved to
> the DB.
>
>
> -
> QmailToaster hosted by: VR Hosted 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>


-
 QmailToaster hosted by: VR Hosted 
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [qmailtoaster] Burnt my first toast ;-(

2006-02-15 Thread Sanjay Arora
Eric

Thanks for your input. I don't exactly remember if clam was already
installed or not, but if it was, it must have been from the Centos 4.0
CD. Idealistically, that should not be a wrong installation, but one
never knows.

I'll try on a fresh server I need to install tommorrow, rather than
trying to correct a botched install and make sure none of the softwares
& sendmail are not installed. 

If sucessful, will try to correct this install and revert with status and queries, if any.

Thanks once again.

With best regards.
Sanjay.
On 2/15/06, Warren <[EMAIL PROTECTED]> wrote:



  


If that does not work, then you need to remove sendmail.  qmail-toaster
will not install while sendmail is there.

W

Erik Espinoza wrote:

  Looks like clamav was already installed but not properly. Your bestbet would probably be to remove all currently installed packages andtry again.DO NOT REMOVE THE ZLIB UPDATE!The easiest way to do this is to type "rpm -e `rpm -qa | grep toaser`"
Thanks,Erik






Re: [qmailtoaster] RE: vqadmin problems

2006-02-15 Thread Erik Espinoza
This is the QmailToaster list. The user who I was replying to had
e-mailed me directly. In addition I thought it'd be nice to CC the
list, so the knowledge gets passed along.

As far as vqadmin, there are a few html bugs, and aliases are moved to
the db. I can't think of any other bugs off the top of my head.

Erik

On 2/15/06, Warren <[EMAIL PROTECTED]> wrote:
>  I thought this was the QmailToaster mailing list...
>
>  Is that the only thing that is wrong with vqadmin right now, the aliases
> having moved to the database?
>
>  W
>
>  Erik Espinoza wrote:
>  Hello,
>
> The vqadmin package is not supported by Inter7 and is not really
> compatible with the latest version of the QmailToaster. The html needs
> some re-working and the db functionality is not there, now that
> vpopmail stores aliases in the db.
>
> The QmailToaster is mostly a packaged distribution of Qmail. Because
> of this, the vqadmin has been all but deprecated. It's very
> unfortunate, but Inter7 (the group that wrote vqadmin) has pretty much
> abandoned it.
>
> In the future please send these types of questions to the QmailToaster
> mailing list.
>
> Thanks,
> Erik
>
>
>
>  Hey Erik, Sorry to bug you. I know your a busy guy. Listen
> I have a problem that I have been trying to figure out for a few days
> now. I got Qmail Toaster installed (using Jake's install script) on
> my CentOS 3.6 machine. It installs perfect. I can add domains users,
> etc. My problem is that when I go to edit permissions in Vqadmin the
> checks in the check boxes seem to jump around as soon as I hit modify
> email account. Is this a bug or is it something I am doing. Any help or
> suggestions would be greatly appreciated. Thank you.
>
>  -
>  QmailToaster hosted by: VR Hosted 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>
>

-
 QmailToaster hosted by: VR Hosted 
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [qmailtoaster] RE: vqadmin problems

2006-02-15 Thread Jake Vickers

Warren wrote:


I thought this was the QmailToaster mailing list...

Is that the only thing that is wrong with vqadmin right now, the 
aliases having moved to the database?


It is the Toaster mailing list. Erik was just trying to let all know 
that while we're still using VqAdmin for the moment, it has problems as 
is no longer supported. An effort is underway to find a replacement. 
Until then, we limp along with what we have.

And yes, one of the major problems is that the aliases have moved to the DB.


-
QmailToaster hosted by: VR Hosted 
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [qmailtoaster] Burnt my first toast ;-(

2006-02-15 Thread Warren




If that does not work, then you need to remove sendmail.  qmail-toaster
will not install while sendmail is there.

W

Erik Espinoza wrote:

  Looks like clamav was already installed but not properly. Your best
bet would probably be to remove all currently installed packages and
try again.

DO NOT REMOVE THE ZLIB UPDATE!

The easiest way to do this is to type "rpm -e `rpm -qa | grep toaser`"

Thanks,
Erik



On 2/14/06, Sanjay Arora <[EMAIL PROTECTED]> wrote:
  
  
 <[EMAIL PROTECTED]> wrote:


  Hello Sanjay,

Would you mind pasting the result of 'rpm -qa | grep toaster'.
  

 Here it is:

 [EMAIL PROTECTED] ~]# rpm -qa |grep toaster
 vpopmail-toaster-5.4.10-1.2.10
 spamassassin-toaster-3.1.0-1.2.11
 daemontools-toaster-0.76-1.2.9
 squirrelmail-toaster-1.4.5-1.2.13
 autorespond-toaster-2.0.4-1.2.8
 clamav-toaster-0.87.1-1.2.10
 ucspi-tcp-toaster-0.88-1.2.9
 [EMAIL PROTECTED] ~]#

  BTW, I ran the scripts as root, in case of manual install earliar
(qmailrocks.org) methodology it was an unpreviledged user. Is this correct?
or should permissions be (or maybe are being) changed by a script
post-install.

 With best regards and thanks.
 Sanjay.



  
  
-
 QmailToaster hosted by: VR Hosted 
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

  






Re: [qmailtoaster] RE: vqadmin problems

2006-02-15 Thread Warren




I thought this was the QmailToaster mailing list...

Is that the only thing that is wrong with vqadmin right now, the
aliases having moved to the database?

W

Erik Espinoza wrote:

  Hello,

The vqadmin package is not supported by Inter7 and is not really
compatible with the latest version of the QmailToaster. The html needs
some re-working and the db functionality is not there, now that
vpopmail stores aliases in the db.

The QmailToaster is mostly a packaged distribution of Qmail. Because
of this, the vqadmin has been all but deprecated. It's very
unfortunate, but Inter7 (the group that wrote vqadmin) has pretty much
abandoned it.

In the future please send these types of questions to the QmailToaster
mailing list.

Thanks,
Erik

  
  
Hey Erik,  Sorry to bug you.  I know your a busy guy.  Listen
I have a  problem that I have been trying to figure out for a few days
now.  I got Qmail Toaster installed (using Jake's install script) on
my CentOS 3.6 machine.  It installs perfect.  I can add domains users,
etc.  My problem is that when I go to edit permissions in Vqadmin the
checks in the check boxes seem to jump around as soon as I hit modify
email account.  Is this a bug or is it something I am doing.  Any help or
suggestions would be greatly appreciated.  Thank you.

  
  
-
 QmailToaster hosted by: VR Hosted 
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

  






Re: [qmailtoaster] FastForward dosen't work ... why?

2006-02-15 Thread Gabriel Lai Yong Shern



Hello
 
Qmail can be as a front end server. Firewall will do some 
port forwarding to qmail... after scanning, qmail will forward emails to 
Exchange.
What I've done is as below:
 
1) Install Qmail packages, make sure every packages are 
properly installed.
2) modify 
/var/qmail/control/rcpthost  to allow your domain 
to comes in
3) Allow relaying from your Exchange Server ( Users send 
mails to Exchange, Exchange forward to Qmail then deliver to the 
World)
    - edit /etc/tcprules.d/tcp.smtp, add a 
line like [exchange ip]:allow,RELAYCLIENT=""
then run qmailctl cdb to reload
4) When Qmail receive all email for scanning, you must 
forward the mails to Exchange
    - edit 
/var/qmail/control/smtproutes add in your Exchange IP 
and port eg: [exchangeip:25]
 
** Please don't add any virtual domain with vqadmin. 
Don't add any domains & alias domains.
 
In Exchange, forward your DNS to your qmail box, then 
every email will be forward to qmail for scanning, then qmail will deliver to 
the world. 
 
Don't forget to forward all incoming mails from port 25 
in firewall to qmail box. 
 
For more easier, you may use Webmin to configure Qmail in 
GUI www.webmin.com
 
That's all about the config.  Let us know the 
result.
 
You can see through /var/log/qmail/smtp/current & 
/var/log/qmail/send/current or /var/log/maillog 
 
Gabriel
 
- Original Message - 
From: "Pablo Silva" <[EMAIL PROTECTED]>
To: 
Sent: Thursday, February 16, 2006 1:27 
AM
Subject: Re: [qmailtoaster] FastForward dosen't 
work ... why?
> Hi Again!> >  Yes, the principal objective is to 
set a front> end server (qmail), and back end server exchange> 
server, if you ask for this why?, sorry bussiness> rules.> 
>  I've tryed to configurate qmail server for > fastforward, 
but someting is wrong... > >  I prefer to make a slow change, 
I want to therefore> redirect the e-mail traffic in firewall...  
When the> change this ready one, then I put qmail like principal> 
server...> > But now... what's the next?... I'm stop for 
these> troubles...> > Thanks in Advance!> 
> - Pablo> >  >  > > 
--- Gabriel Lai Yong Shern <[EMAIL PROTECTED]>> 
wrote:> >> Hello Pablo,>> >> Are you trying 
to setup a relay server to Exchange>> Server? I have setup a 
>> qmail box for my client as relay server. Meaning>> that 
every incoming & >> outgoing will go through qmail server. In 
fact,>> there will be no email >> accounts in qmail server, 
it just do email scanning>> & spamming only. After >> 
scanning, it will forward it back to Exchange>> Server.>> 
>> In this case, Exchange will be a safe server at the>> 
back, frontend that's >> fighting spam and viruses will be Qmail 
box.>> >> My client has been running this method for about 
3>> months, till now, no >> problem being face by 
them.>> >> You don't really need an alias in Qmail I 
think.>> >> What will be your objective to setup Qmail box 
to>> sit in front of Exchange?>> >> 
Gabriel>> >> >>> 
->>  
QmailToaster hosted by: VR Hosted>> > 
To unsubscribe, e-mail:>> [EMAIL PROTECTED]>> For additional commands, e-mail:>> 
[EMAIL PROTECTED]>> >> > > > 
__> Do You 
Yahoo!?> Tired of spam?  Yahoo! Mail has the best spam protection 
around > http://mail.yahoo.com > 
> 
-> 
QmailToaster hosted by: VR Hosted > 
-> To 
unsubscribe, e-mail: [EMAIL PROTECTED]> For additional commands, e-mail: [EMAIL PROTECTED]>


Re: [qmailtoaster] FastForward dosen't work ... why?

2006-02-15 Thread Pablo Silva
Hi Again!

  Yes, the principal objective is to set a front
end server (qmail), and back end server exchange
server, if you ask for this why?, sorry bussiness
rules.

  I've tryed to configurate qmail server for 
fastforward, but someting is wrong... 

  I prefer to make a slow change, I want to therefore
redirect the e-mail traffic in firewall...  When the
change this ready one, then I put qmail like principal
server...

 But now... what's the next?... I'm stop for these
troubles...

 Thanks in Advance!

 - Pablo

  
  

--- Gabriel Lai Yong Shern <[EMAIL PROTECTED]>
wrote:

> Hello Pablo,
> 
> Are you trying to setup a relay server to Exchange
> Server? I have setup a 
> qmail box for my client as relay server. Meaning
> that every incoming & 
> outgoing will go through qmail server. In fact,
> there will be no email 
> accounts in qmail server, it just do email scanning
> & spamming only. After 
> scanning, it will forward it back to Exchange
> Server.
> 
> In this case, Exchange will be a safe server at the
> back, frontend that's 
> fighting spam and viruses will be Qmail box.
> 
> My client has been running this method for about 3
> months, till now, no 
> problem being face by them.
> 
> You don't really need an alias in Qmail I think.
> 
> What will be your objective to setup Qmail box to
> sit in front of Exchange?
> 
> Gabriel
> 
> 
>
-
>  QmailToaster hosted by: VR Hosted
> 
>
-
> To unsubscribe, e-mail:
> [EMAIL PROTECTED]
> For additional commands, e-mail:
> [EMAIL PROTECTED]
> 
> 


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

-
 QmailToaster hosted by: VR Hosted 
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [qmailtoaster] Domain keys

2006-02-15 Thread Erik Espinoza
That's weird. I got the same entries when I used the Microsoft
SenderID Wizard as when I did the spf wizard.


On 2/15/06, Anish Shaikh <[EMAIL PROTECTED]> wrote:
> No Sender ID is not SPF, it is based on SPF, but still the if SPF
> entries are made the Sender ID tests are also passed and i will be
> fine with that, but what about Domain Keys, we have this
> http://qmail.org/qmail-1.03-dk-0.53.patch patch availiable for
> domainkeys support in qmail, has anyone tried it with Qmail Toaster
> and if it works ?
>
> Anish
>
>
> On 2/15/06, Erik Espinoza <[EMAIL PROTECTED]> wrote:
> > SenderID is also known as spf, which is supported by the QmailToaster.
> >
> > DomainKeys however is not supported.
> >
> > On 2/14/06, Anish Shaikh <[EMAIL PROTECTED]> wrote:
> > > Does Qmail Toaster support Sender ID and Domain keys, i havent found
> > > it anywhere on the website and not much help on search engines, i
> > > would like to know from you guys, have you implemented Sender ID and
> > > Domain keys on qmail and how about its functionality ?
> > >
> > > Anish
> > >
> > > --
> > > "Attack him where he is UnPrepared, Appear where you are not Expected"
> > >
> >
> > -
> >  QmailToaster hosted by: VR Hosted 
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
>
>
> --
> "Attack him where he is UnPrepared, Appear where you are not Expected"
>

-
 QmailToaster hosted by: VR Hosted 
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [qmailtoaster] Domain keys

2006-02-15 Thread Ray Van Dolson
On Wed, Feb 15, 2006 at 02:47:06PM +0530, Anish Shaikh wrote:
> No Sender ID is not SPF, it is based on SPF, but still the if SPF
> entries are made the Sender ID tests are also passed and i will be
> fine with that, but what about Domain Keys, we have this
> http://qmail.org/qmail-1.03-dk-0.53.patch patch availiable for
> domainkeys support in qmail, has anyone tried it with Qmail Toaster
> and if it works ?
> 
> Anish

>From what I understand qmailtoaster's position is that since SpamAssassin
offers this functionality currently, there isn't a pressing need to get the
patch into qmailtoaster itself as of yet.  If SA doesn't continue to improve
the feature though, they may be able to bump up integration of the patch a
bit on the priority list.  As it is they have a lot of patches people want
to get merged in, and so adding one that (somewhat) duplicates functionality
isn't going to be at the top of the totem pole.

Ray

-
 QmailToaster hosted by: VR Hosted 
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [qmailtoaster] FastForward dosen't work ... why?

2006-02-15 Thread Gabriel Lai Yong Shern

Hello Pablo,

Are you trying to setup a relay server to Exchange Server? I have setup a 
qmail box for my client as relay server. Meaning that every incoming & 
outgoing will go through qmail server. In fact, there will be no email 
accounts in qmail server, it just do email scanning & spamming only. After 
scanning, it will forward it back to Exchange Server.


In this case, Exchange will be a safe server at the back, frontend that's 
fighting spam and viruses will be Qmail box.


My client has been running this method for about 3 months, till now, no 
problem being face by them.


You don't really need an alias in Qmail I think.

What will be your objective to setup Qmail box to sit in front of Exchange?

Gabriel


-
QmailToaster hosted by: VR Hosted 
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [qmailtoaster] ***SPAM*** Help! Cannot send email outside my own server!

2006-02-15 Thread Pablo Silva


--- Gabriel Lai Yong Shern <[EMAIL PROTECTED]>
wrote:

> I did increase the value of concurrencyremote so
> that it won't stay in the server too long, because
> the default value is 60.
> 
> What are others opinions on changing the value of
> concurrency??
> 
> Gab
>   - Original Message - 
>   From: Edwin Casimero 
>   To: qmailtoaster-list@qmailtoaster.com 
>   Sent: Tuesday, February 07, 2006 7:25 PM
>   Subject: Re: [qmailtoaster] ***SPAM*** Help!
> Cannot send email outside my own server!
> 
> 
>   Thank you to all for your guidance,
> 
>   I started out yesterday with 40,000+ in queue.
>   Now I am down to 542.
> 
>   For the benefit of other qmailtoaster fans...
> 
>   This is my analysis of the problem:
>   - I got a call from a customer that emails are not
> being sent to yahoo, but within their company it
> works. 
>   - I checked and indeed confirmed this using
> another email server I also operate.
>   - I asked help here on the qmail toaster mailing
> list
>   - I turned off the firewall, nope, that's not it.
>   - Email receiving is fine. 
>   - Clue from the Gabriel Lai Yong Shern: qmailctl
> queue
>   - Found out I've got 40,000+ in the queue
>   - They are mostle from a very large message board
> I host which holds 60,000+ members.  The admin just
> sent a party invitation to everyone in the board. 
>   - Analysis from Jake Vickers regarding SPAM, I
> also checked with the RBL evidence that I have an
> old insecure feedback form in php.
> 
>   What I did to help solve this problem:
>   - I fixed the feedback forms by updating them to
> the latest ones with anti-spam 
>   - I increased the
> /var/qmail/control/concurrencyremote setting from 60
> to 120
>   - I did: qmailctl doqueue to speed up delivery
>   - I coordinated with the large messageboard admin
> to fix his part and not send mail for a while
>   - Now after more than 24 hours, I tweaked
> queuelifetime from 24 hours to 4 hours just to help
> empty the queue.
>   - Now I am down to 500+ in the queue, I will reset
> back the queuelifetime maybe to 12 hours. 
> 
>   What do you think guys?  Anything I missed?
>   Will update you on final resolution of this
> problem.
> 
> 
> 
>   On 2/6/06, Jake Vickers < [EMAIL PROTECTED]>
> wrote:
> Gabriel Lai Yong Shern wrote:
> 
> > *Don't worry, it will send out by now* 
> > **
> > *You should see send log file*
> > **
> > *I have a client also, where the company will
> send out approx 100mails
> > in 1 hour. I modified the concurrencyoutgoing
> file to be higher, so
> > that it will send faster.* 
> > **
> > *but, I will advice you jot down the default
> value, when every mails
> > finished sending, put it back default value. *
> > **
> > *After modified, please restart server. If
> stop qmail, will take 
> > sometime, so restart is the best*
> 
> Let's see. If I follow this, your main mail
> server got black listed,
> right? I did a check at DNSStuff.com, and see
> that you were listed here:
>
> http://psbl.surriel.com/listing?ip=209.11.243.202
> http://www.spamcop.net/bl.shtml?209.11.243.202
> Which means that you are listed as a spammer.
> Since the second link is 
> SpamCop (one that almost every one uses) that
> would explain why your
> mail cannot make it out of your domain. You need
> to find out who was
> spamming, remove them from your server, and on
> the SpamCop link I sent
> they have instructions on how to remove yourself
> from their list. This
> is one of the risks of hosting other people's
> websites/email. Hope you
> charge them enough to make up for the
> aggravation!
> You could always swing all of your email
> accounts to another server with 
> a different IP in the meantime. But you will
> still need to investigate
> why you were listed as a spammer, or your new IP
> will just get
> blacklisted, and on and on.
> That will also be why you have 3000+ emails in
> your queue. Most servers 
> will check against SpamCop (or one of the many
> others), and since you're
> listed as a spammer, they drop connection on
> you. So your email sits in
> the queue, until your
> /var/qmail/control/queuelifetime is exceeded. 
> Sorry about your bad luck, and hopefully that
> helps some.
> 
>
>
-
>  QmailToaster hosted by: VR Hosted
> 
>
>
-
> To unsubscribe, e-mail:
> [EMAIL PROTECTED] 
> For additional commands, e-mail:
> [EMAIL PROTECTED]
> 
> 
> 
> 


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

-
 QmailToaster hosted by: VR Hosted 
--

Re: [qmailtoaster] FastForward dosen't work ... why?

2006-02-15 Thread Pablo Silva
Hi Gabriel!

  Thanks for your reply, here I send my comments...

  1) I want to replace a sendmail server by Qmail,
today the e-mail services works this form
  
 e-mail 
 in ---> Sendmail --> Exchange 5.5 --> Outlook
 (alias)

 where in sendmail server, we have a big list of alias
to e-mail account to exchange server.

 For example:

 psilva:   [EMAIL PROTECTED]

 The mailbox [EMAIL PROTECTED] is in
Exchange Server 5.5

 
 2) The next step for to replace Sendmail server is
to redirect all the e-mail traffic by iptables to 
Qmail server, only for make a several tests before
the change.

  That's the architecture for make testing

e-mail 
in---> Firewall --> Qmail --> Exchange --> Outlook
(redirect 
 e-mail 
 traffic)



  I don't want to drop sendmail service yet, because 
if there are troubles, I can change quickly to my old
server Sendmail, modify the iptable rule in the
firewall, (Rollback all!)


3) You said:

"Let's say, if your principal-domain.com is your
sendmail box, you would like to forward every client's
emails to qmail box? Replace exchange server?"

  My comment is:

  I want to forward every client's email to Exchange
server, I don't want forward to qmail box..., as you
see in 2) these architecture i want to use before 
to replace sendmail by qmail...

4) I'm agree with you, I'll want to replace the
Exhange
server, but I can't for bussiness rules, all of
our user must to use Exchange mailbox.

 Conlusion
 -

 As you can see, I have  qmailtoaster installed and
working, but when I redirect all the e-mail traffic
toward qmail server, I have troubles...FastForward 
in qmail server dosen't works.. I don't know why...


 If you can see the log file, the messages are:

/var/log/qmail/smtp/current

@400043dcdfb228443c34 tcpserver: status: 3/100
@400043dcdfb8134bfeac CHKUSER accepted rcpt:
from
<[EMAIL PROTECTED]::> remote
 rcpt
<[EMAIL PROTECTED]> : found existing recipient
@400043dcdfb902e47c74 tcpserver: end 27446
status
0
@400043dcdfb902e6263c tcpserver: status: 2/100
@400043dcdfb90fba38e4 tcpserver: status: 3/100
@400043dcdfb90fba5054 tcpserver: pid 27456
from
200.74.166.139
@400043dcdfb90fba5824 tcpserver: ok 27456
adonis.principal-domain.com:10.100.104.141:25
:200.74.166.139::3088

/var/log/qmail/send/current

@400043dd4a14048470d4 delivery 1735: deferral:
Trouble_reading_users/cdb_in_qmail-lspawn./
@400043dd4a140484845c status: local 1/10
remote
1/60


 Thanks a lot for your time and help

 Greetings,
 Pablo


-START

Hi Pablo,


The problem is, when I send an e-mail to


>[EMAIL PROTECTED]


Let me clarify a few queries I have after reading your
email. principal-domain.com is your sendmail box?

Let's say, if your principal-domain.com is your
sendmail box, you would like to forward every client's
emails to qmail box? Replace exchange server?

If you would like to replace exchange server with
Qmail toaster, 1st, every client's email address must
be in Qmail box, from sendmail, you can forward all
emails to Qmail box, and qmail will separate every
emails to every specific emails.

I think, you don't have to have 2 email server, just
use Qmail as a centralized email server will be a good
solution too.

What do you think?

Please correct me.

Gab




- Original Message - From: "Pablo Silva"
<[EMAIL PROTECTED]>

To: 
Sent: Monday, January 30, 2006 7:18 AM
Subject: [qmailtoaster] FastForward dosen't work ...
why?



Hi!

 I'm very newbie administrator with qmailtoaster.

 I've installed by http://jakev.com/qmail/ script
into my
CENTOS 4.2 server.

 My qmailtoaster configuration is
http://pastebin.com/529358

 I'm testing my qmailtoaster server for this
moment,
I redirect
the e-mail traffic from my linux router to my
qmailtoaster server
by iptables

 -A PREROUTING  -d 200.55.198.5 -i eth0 -p tcp -m
tcp
--dport 25 -j DNAT --to-destination
10.100.104.141:25

  Where 200.55.198.5 is my internet address and
bypass all
the traffic to internal qmailtoaster server
10.100.104.141

  My organization use actually sendmail as
principal
e-mail
server and Microsoft exchange 5.5 as internal
server.

  The sendmail server has a big alias list where
the
users are:

user:  [EMAIL PROTECTED]

  When I installed qmailtoaster, also compiled
fastforward
for to work with this alias file, so I get
aliases.cdb
file
generated by /var/qmail/bin/newaliases

  The MX register in internal DNS is

  principal-domain.com   IN MX 0
adonis.pricipal-domain.com

  The problem is, when I send an e-mail to

   [EMAIL PROTECTED]

  it's in the queue and the log file show me this
information:

/var/log/qmail/smtp/current

@400043dcd

[qmailtoaster] SOLVED Re: [qmailtoaster] Problem with Squirrelmail

2006-02-15 Thread list
Hi everyone,

the problem occured due to webmail not being able to read out the imap folders. 
this was caused by the php version. here is the patch for it:

Change webmail/functions/imap_messages.php on line 480

from $value = strtolower(array_shift(split('/\w/',trim($value;

to

$value_tmp = trim($value);
$value_tmp = split('/\w/',$value_tmp);
$value = strtolower(array_shift($value_tmp));


OS: FDR 40 php 5.05

Ciao
Chris





[EMAIL PROTECTED] wrote ..
> Hi Erik,
> 
> there are no errors in the apache log. the current distros is fdr40 with
> php 5.05. 
> 
> i am running the exactly the same config on another server. there it is
> working fine. even the configtest.php output is the same. THE ONLY difference
> between this two servers is the php version. php5.05 <--> php5.04 might
> that be the problem?
> 
> http://www.newquality.de/webmail/src/configtest.php
> 
> Ciao
> Chris
> 
> 
> Erik Espinoza wrote ..
> > Hello Chris,
> > 
> > You will need to provide more info than that. For example, what
> > distribution? Maybe some info frm the apache error log. . .
> > 
> > Eriik
> > 
> > On 2/12/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> > > Hi everyone,
> > >
> > > i have the following problem with the webmail program squirrelmail.
> (i
> > have installed the package from qmailtoaster.com without any changes)
> when
> > i now login i do not see the inbox windows on the right hand side. the
> > screen is white. when i look to the menu bar left i see that there are
> > at least 5 messages in the inbox. when i click the inbox link nothing
> happens
> > - the right window stays white.
> > >
> > > what should i do???
> > >
> > > Cheers
> > > Chris
> > >
> > >
> > >
> > > -
> > >  QmailToaster hosted by: VR Hosted 
> > > -
> > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > For additional commands, e-mail: [EMAIL PROTECTED]
> > >
> > >
> > 
> > -
> >  QmailToaster hosted by: VR Hosted 
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]

-
 QmailToaster hosted by: VR Hosted 
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Re: [qmailtoaster] allowing larger attachment limit... HOW?

2006-02-15 Thread Jake Vickers

Riezal Ross wrote:


Wouldn't the databytes file define this? Globally that is.

Regards,
 

Databytes are limited to 20 meg, and that's for the entire email (email 
contents, MIMEs, attachments, etc.). Attachments are also controlled via 
the setting in php.ini.


-
QmailToaster hosted by: VR Hosted 
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [qmailtoaster] Domain keys

2006-02-15 Thread Anish Shaikh
No Sender ID is not SPF, it is based on SPF, but still the if SPF
entries are made the Sender ID tests are also passed and i will be
fine with that, but what about Domain Keys, we have this
http://qmail.org/qmail-1.03-dk-0.53.patch patch availiable for
domainkeys support in qmail, has anyone tried it with Qmail Toaster
and if it works ?

Anish


On 2/15/06, Erik Espinoza <[EMAIL PROTECTED]> wrote:
> SenderID is also known as spf, which is supported by the QmailToaster.
>
> DomainKeys however is not supported.
>
> On 2/14/06, Anish Shaikh <[EMAIL PROTECTED]> wrote:
> > Does Qmail Toaster support Sender ID and Domain keys, i havent found
> > it anywhere on the website and not much help on search engines, i
> > would like to know from you guys, have you implemented Sender ID and
> > Domain keys on qmail and how about its functionality ?
> >
> > Anish
> >
> > --
> > "Attack him where he is UnPrepared, Appear where you are not Expected"
> >
>
> -
>  QmailToaster hosted by: VR Hosted 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


--
"Attack him where he is UnPrepared, Appear where you are not Expected"