Re: [qmailtoaster] Round Cube

2008-09-19 Thread wp

hi
I think i find solution.
The problem is in qtp-install-roundcube script. This script replace all '' 
by 'localhost'

In my case solution is:
Edit file: /usr/share/roundcube/config/main.inc.php
find line: $rcmail_config['session_domain' = 'localhost';   (near line nr 
214)

end relace it with :
$rcmail_config['session_domain' = '';
In my case works ok.
Now i upgrde to RC2.0 alpha version and this version also works fine.

I hope it's help someone.

regards
Marek

- Original Message - 
From: Miguel Pereira Leite [EMAIL PROTECTED]

To: qmailtoaster-list@qmailtoaster.com
Sent: Thursday, September 18, 2008 2:09 AM
Subject: Re: [qmailtoaster] Round Cube


i did't.

yet.

i've posted a message on rouncube support.

see the awser:

Changes (by till):

* status: new = closed
* resolution: = wontfix


Comment:

Please update to 0.2-alpha. No legacy suppor


A Wednesday 17 September 2008 18:53:05, wp escreveu:

Hi
I've the same problem.
Do you slowe this ?

Regards,
Marek

- Original Message -
From: Miguel Pereira Leite [EMAIL PROTECTED]
To: qmailtoaster-list@qmailtoaster.com
Sent: Wednesday, September 17, 2008 2:37 PM
Subject: Re: [qmailtoaster] Round Cube

 i'll

 If i've get any answer from them, i'll post it back here.

 A Wednesday 17 September 2008 13:28:28, Jake Vickers escreveu:
 Miguel Pereira Leite wrote:
  I think that is not the case.
 
  The usesr i've tested did log on squirrelmail before rcm.
 
  Anyway i think that happens because the special folders must be
  created.
 
  Thats not the case.
 
  Did you noticed the log i've atached on the first e-mail?
 
  i think that the problem is there,

 You'll have more luck asking the Roundcube people. We'd appreciate any
 fixes you may come up with.


 -
  QmailToaster hosted by: VR Hosted http://www.vr.org
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: 
 [EMAIL PROTECTED]


 -
 QmailToaster hosted by: VR Hosted http://www.vr.org
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]

-
 QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-
QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[qmailtoaster] qmail server mail mass

2008-09-19 Thread aldo carranza
Hello, I want know how to config qmailtoaster to become a server mail and it 
send mass mail to my suscribes.

Very Thanks.

Aldo Carranza


Re: [qmailtoaster] qmail server mail mass

2008-09-19 Thread dnk




From: aldo carranza [EMAIL PROTECTED]
Reply-To: Qmail Toaster List qmailtoaster-list@qmailtoaster.com
Date: Fri, 19 Sep 2008 12:28:22 -0500
To: Qmail Toaster List qmailtoaster-list@qmailtoaster.com
Subject: [qmailtoaster] qmail server mail mass

Hello, I want know how to config qmailtoaster to become a server mail and it
send mass mail to my suscribes.
 
Very Thanks.
 
Aldo Carranza



--

The server includes the EZMLM package (list server), so yes it can.

D


 




-
 QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[qmailtoaster] SOLVED - Re: [qmailtoaster] How to de-activate tls for an ip?

2008-09-19 Thread P.V.Anthony
Hello Everyone,

I was desperate and did not know what was going on. You all really
helped me out a lot. I thank you all.

Now I can receive emails from mail.hosting.com.sg. Yahooo!!!

The problem was an option setting in the run script for smtp.
Changed /usr/bin/tcpserver -v -r to /usr/bin/tcpserver -v -R.
Just changed -r to -R.

Really do not know why emails from mail.hosting.com.sg does not come
through when the setting is -r and comes through when the setting is -R.

If anyone has an idea, please share.

The original script is as follows,

- start ---
exec  /usr/bin/softlimit -m 1200 \
 /usr/bin/tcpserver -v -r -h -P -l $HOSTNAME -x $TCP_CDB -c $MAXSMTPD \
 -u $QMAILDUID -g $NOFILESGID 0 smtp \
  $GREYLIST $RBLSMTPD $BLACKLIST $SMTPD $VCHKPW /bin/true 21
- end 

The changed script is as follows,

- start ---
exec  /usr/bin/softlimit -m 1200 \
 /usr/bin/tcpserver -v -R -h -P -l $HOSTNAME -x $TCP_CDB -c $MAXSMTPD \
 -u $QMAILDUID -g $NOFILESGID 0 smtp \
  $GREYLIST $RBLSMTPD $BLACKLIST $SMTPD $VCHKPW /bin/true 21
- end 

P.V.Anthony

-
 QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [qmailtoaster] SOLVED - Re: [qmailtoaster] How to de-activate tls for an ip?

2008-09-19 Thread Eric Shubert
I wonder how you ended up with -r -h options for tcpserver.
I have -R -H, which I believe are the 'stock' toaster values.

P.V.Anthony wrote:
 Hello Everyone,
 
 I was desperate and did not know what was going on. You all really
 helped me out a lot. I thank you all.
 
 Now I can receive emails from mail.hosting.com.sg. Yahooo!!!
 
 The problem was an option setting in the run script for smtp.
 Changed /usr/bin/tcpserver -v -r to /usr/bin/tcpserver -v -R.
 Just changed -r to -R.
 
 Really do not know why emails from mail.hosting.com.sg does not come
 through when the setting is -r and comes through when the setting is -R.
 
 If anyone has an idea, please share.
 
 The original script is as follows,
 
 - start ---
 exec  /usr/bin/softlimit -m 1200 \
  /usr/bin/tcpserver -v -r -h -P -l $HOSTNAME -x $TCP_CDB -c $MAXSMTPD \
  -u $QMAILDUID -g $NOFILESGID 0 smtp \
   $GREYLIST $RBLSMTPD $BLACKLIST $SMTPD $VCHKPW /bin/true 21
 - end 
 
 The changed script is as follows,
 
 - start ---
 exec  /usr/bin/softlimit -m 1200 \
  /usr/bin/tcpserver -v -R -h -P -l $HOSTNAME -x $TCP_CDB -c $MAXSMTPD \
  -u $QMAILDUID -g $NOFILESGID 0 smtp \
   $GREYLIST $RBLSMTPD $BLACKLIST $SMTPD $VCHKPW /bin/true 21
 - end 
 
 P.V.Anthony
 
 -
  QmailToaster hosted by: VR Hosted http://www.vr.org
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 


-- 
-Eric 'shubes'

-
 QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [qmailtoaster] SOLVED - Re: [qmailtoaster] How to de-activate tls for an ip?

2008-09-19 Thread P.V.Anthony
Eric Shubert wrote:
 I wonder how you ended up with -r -h options for tcpserver.
 I have -R -H, which I believe are the 'stock' toaster values.

Completely my mistake. I must have changed the stock values.

Sorry for the noise.

By the way how does the -R and -H work in relation to incoming emails.

P.V.Anthony

-
 QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [qmailtoaster] SOLVED - Re: [qmailtoaster] How to de-activate tls for an ip?

2008-09-19 Thread Eric Shubert
P.V.Anthony wrote:
 Eric Shubert wrote:
 I wonder how you ended up with -r -h options for tcpserver.
 I have -R -H, which I believe are the 'stock' toaster values.
 
 Completely my mistake. I must have changed the stock values.
 
 Sorry for the noise.
 
 By the way how does the -R and -H work in relation to incoming emails.
 
 P.V.Anthony
 

Works fine for me.
I'm not really certain of the purpose of having these options enabled (lower
case). I could guess, but don't want to start any rumors. ;)

-- 
-Eric 'shubes'

-
 QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [qmailtoaster] qmail server mail mass

2008-09-19 Thread aldo carranza
But, anybody tell me that growing values here 
CHKUSER_RCPTLIMIT=50,CHKUSER_WRONGRCPTLIMIT=10 and echo 150  
/var/qmail/control/concurrencyremote , it´s really ?


very thanks

Aldo Carranza

- Original Message - 
From: dnk [EMAIL PROTECTED]

To: Qmail Toaster List qmailtoaster-list@qmailtoaster.com
Sent: Friday, September 19, 2008 12:44 PM
Subject: Re: [qmailtoaster] qmail server mail mass







From: aldo carranza [EMAIL PROTECTED]
Reply-To: Qmail Toaster List qmailtoaster-list@qmailtoaster.com
Date: Fri, 19 Sep 2008 12:28:22 -0500
To: Qmail Toaster List qmailtoaster-list@qmailtoaster.com
Subject: [qmailtoaster] qmail server mail mass

Hello, I want know how to config qmailtoaster to become a server mail and 
it

send mass mail to my suscribes.

Very Thanks.

Aldo Carranza



--

The server includes the EZMLM package (list server), so yes it can.

D







-
QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


__ Information from ESET NOD32 Antivirus, version of virus 
signature database 3456 (20080919) __


The message was checked by ESET NOD32 Antivirus.

http://www.eset.com





-
QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [qmailtoaster] qmail server mail mass

2008-09-19 Thread Miguel Pereira Leite
well.

i don't what to desrespect you, but i think its time you read some widely 
avalilable documentation on-line


for example:

http://www.lifewithqmail.org/lwq.html  section 3.1




A Friday 19 September 2008 21:29:19, aldo carranza escreveu:
 But, anybody tell me that growing values here
 CHKUSER_RCPTLIMIT=50,CHKUSER_WRONGRCPTLIMIT=10 and echo 150 
 /var/qmail/control/concurrencyremote , it´s really ?

 very thanks

 Aldo Carranza

 - Original Message -
 From: dnk [EMAIL PROTECTED]
 To: Qmail Toaster List qmailtoaster-list@qmailtoaster.com
 Sent: Friday, September 19, 2008 12:44 PM
 Subject: Re: [qmailtoaster] qmail server mail mass

  From: aldo carranza [EMAIL PROTECTED]
  Reply-To: Qmail Toaster List qmailtoaster-list@qmailtoaster.com
  Date: Fri, 19 Sep 2008 12:28:22 -0500
  To: Qmail Toaster List qmailtoaster-list@qmailtoaster.com
  Subject: [qmailtoaster] qmail server mail mass
 
  Hello, I want know how to config qmailtoaster to become a server mail and
  it
  send mass mail to my suscribes.
 
  Very Thanks.
 
  Aldo Carranza
 
 
 
  --
 
  The server includes the EZMLM package (list server), so yes it can.
 
  D
 
 
 
 
 
 
 
  -
  QmailToaster hosted by: VR Hosted http://www.vr.org
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 
  __ Information from ESET NOD32 Antivirus, version of virus
  signature database 3456 (20080919) __
 
  The message was checked by ESET NOD32 Antivirus.
 
  http://www.eset.com

 -
  QmailToaster hosted by: VR Hosted http://www.vr.org
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]



-
 QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]