Re: [qmailtoaster] Port 465 broken after the upgrade

2019-09-14 Thread Remo Mattei
Looks like that did the trick! I am not sure why the other repos are not up to 
date yet. I guess propagation not completed yet.

Remo 

> On Sep 14, 2019, at 21:19, Eric Broch  wrote:
> 
> Not sure if all the mirrors have updated yet, but here's what it's supposed 
> to be.
> 
> #!/bin/sh
> QMAILDUID=`id -u vpopmail`
> NOFILESGID=`id -g vpopmail`
> MAXSMTPD=`cat /var/qmail/control/concurrencyincoming`
> SMTPD="/var/qmail/bin/qmail-smtpd"
> TCP_CDB="/etc/tcprules.d/tcp.smtp.cdb"
> HOSTNAME=`hostname`
> VCHKPW="/home/vpopmail/bin/vchkpw"
> export SMTPS=1
> export FORCETLS=0
> export SMTPAUTH="!+cram"
> 
> exec /usr/bin/softlimit -m 12800 \
> /usr/bin/tcpserver -v -R -H -l $HOSTNAME -x $TCP_CDB -c "$MAXSMTPD" \
> -u "$QMAILDUID" -g "$NOFILESGID" 0 465 \
> $SMTPD $VCHKPW /bin/true 2>&1
> 
> On 9/14/2019 10:18 PM, Remo Mattei wrote:
>> #!/bin/sh
>> QMAILDUID=`id -u vpopmail`
>> NOFILESGID=`id -g vpopmail`
>> MAXSMTPD=`cat /var/qmail/control/concurrencyincoming`
>> SMTPD="/var/qmail/bin/qmail-smtpd"
>> TCP_CDB="/etc/tcprules.d/tcp.smtp.cdb"
>> HOSTNAME=`hostname`
>> VCHKPW="/home/vpopmail/bin/vchkpw"
>> export SMTPS=1
>> 
>> exec /usr/bin/softlimit -m 12800 \
>> /usr/bin/tcpserver -v -R -H -l $HOSTNAME -x $TCP_CDB -c "$MAXSMTPD" \
>> -u "$QMAILDUID" -g "$NOFILESGID" 0 465 \
>> $SMTPD $VCHKPW /bin/true 2>&1
>> 
>> 
>> 
>>> On Sep 14, 2019, at 21:17, Eric Broch  wrote:
>>> 
>>> What's in the run script
>>> 
>>> On 9/14/2019 9:20 PM, Remo Mattei wrote:
 Running
 qmailadmin-1.2.16-2.qt.el7.x86_64
 qmailmrtg-4.2-3.qt.el7.x86_64
 qmail-1.03-3.1.1.qt.el7.x86_64
 
 Dovecot:
 dovecot-pigeonhole-2.3.7.2-9.qt.el7.x86_64
 dovecot-2.3.7.2-9.qt.el7.x86_64
 
 Testing it to openssl
 
 
 s_client -starttls smtp -crlf -connect qmail.rm.ht:465
 
 Connected
 
 That’s it.. does not do anything else.
 
 Any tips?
 
 Thanks
 -
 To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
 For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com
 
>>> -
>>> To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
>>> For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com
>>> 
>> 
>> -
>> To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
>> For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com
>> 
> 
> -
> To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
> For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com
> 


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



Re: [qmailtoaster] Port 465 broken after the upgrade

2019-09-14 Thread Eric Broch
Not sure if all the mirrors have updated yet, but here's what it's 
supposed to be.


#!/bin/sh
QMAILDUID=`id -u vpopmail`
NOFILESGID=`id -g vpopmail`
MAXSMTPD=`cat /var/qmail/control/concurrencyincoming`
SMTPD="/var/qmail/bin/qmail-smtpd"
TCP_CDB="/etc/tcprules.d/tcp.smtp.cdb"
HOSTNAME=`hostname`
VCHKPW="/home/vpopmail/bin/vchkpw"
export SMTPS=1
export FORCETLS=0
export SMTPAUTH="!+cram"

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

On 9/14/2019 10:18 PM, Remo Mattei wrote:

#!/bin/sh
QMAILDUID=`id -u vpopmail`
NOFILESGID=`id -g vpopmail`
MAXSMTPD=`cat /var/qmail/control/concurrencyincoming`
SMTPD="/var/qmail/bin/qmail-smtpd"
TCP_CDB="/etc/tcprules.d/tcp.smtp.cdb"
HOSTNAME=`hostname`
VCHKPW="/home/vpopmail/bin/vchkpw"
export SMTPS=1

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




On Sep 14, 2019, at 21:17, Eric Broch  wrote:

What's in the run script

On 9/14/2019 9:20 PM, Remo Mattei wrote:

Running
qmailadmin-1.2.16-2.qt.el7.x86_64
qmailmrtg-4.2-3.qt.el7.x86_64
qmail-1.03-3.1.1.qt.el7.x86_64

Dovecot:
dovecot-pigeonhole-2.3.7.2-9.qt.el7.x86_64
dovecot-2.3.7.2-9.qt.el7.x86_64

Testing it to openssl


s_client -starttls smtp -crlf -connect qmail.rm.ht:465

Connected

That’s it.. does not do anything else.

Any tips?

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


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



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



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



Re: [qmailtoaster] Port 465 broken after the upgrade

2019-09-14 Thread Remo Mattei
#!/bin/sh
QMAILDUID=`id -u vpopmail`
NOFILESGID=`id -g vpopmail`
MAXSMTPD=`cat /var/qmail/control/concurrencyincoming`
SMTPD="/var/qmail/bin/qmail-smtpd"
TCP_CDB="/etc/tcprules.d/tcp.smtp.cdb"
HOSTNAME=`hostname`
VCHKPW="/home/vpopmail/bin/vchkpw"
export SMTPS=1

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



> On Sep 14, 2019, at 21:17, Eric Broch  wrote:
> 
> What's in the run script
> 
> On 9/14/2019 9:20 PM, Remo Mattei wrote:
>> Running
>> qmailadmin-1.2.16-2.qt.el7.x86_64
>> qmailmrtg-4.2-3.qt.el7.x86_64
>> qmail-1.03-3.1.1.qt.el7.x86_64
>> 
>> Dovecot:
>> dovecot-pigeonhole-2.3.7.2-9.qt.el7.x86_64
>> dovecot-2.3.7.2-9.qt.el7.x86_64
>> 
>> Testing it to openssl
>> 
>> 
>> s_client -starttls smtp -crlf -connect qmail.rm.ht:465
>> 
>> Connected
>> 
>> That’s it.. does not do anything else.
>> 
>> Any tips?
>> 
>> Thanks
>> -
>> To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
>> For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com
>> 
> 
> -
> To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
> For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com
> 


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



Re: [qmailtoaster] Port 465 broken after the upgrade

2019-09-14 Thread Eric Broch

What's in the run script

On 9/14/2019 9:20 PM, Remo Mattei wrote:

Running
qmailadmin-1.2.16-2.qt.el7.x86_64
qmailmrtg-4.2-3.qt.el7.x86_64
qmail-1.03-3.1.1.qt.el7.x86_64

Dovecot:
dovecot-pigeonhole-2.3.7.2-9.qt.el7.x86_64
dovecot-2.3.7.2-9.qt.el7.x86_64

Testing it to openssl


s_client -starttls smtp -crlf -connect qmail.rm.ht:465

Connected

That’s it.. does not do anything else.

Any tips?

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



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



[qmailtoaster] Port 465 broken after the upgrade

2019-09-14 Thread Remo Mattei
Running 
qmailadmin-1.2.16-2.qt.el7.x86_64
qmailmrtg-4.2-3.qt.el7.x86_64
qmail-1.03-3.1.1.qt.el7.x86_64

Dovecot:
dovecot-pigeonhole-2.3.7.2-9.qt.el7.x86_64
dovecot-2.3.7.2-9.qt.el7.x86_64

Testing it to openssl 


s_client -starttls smtp -crlf -connect qmail.rm.ht:465

Connected 

That’s it.. does not do anything else. 

Any tips?

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



Re: [qmailtoaster] Qmail Toaster Repos Timing Out

2019-09-14 Thread ebroch
A. I'm glad it's resolved. I've been running QMT since centos 4 as 
well. Centos 8 iversion of QMT is ready except for some minor adjustments to 
tls. It looks like they're almost done with conversion from redhat at centos.org





Eric's email, phone






On Sat, Sep 14, 2019 at 11:12 AM -0600, "Roxanne Sandesara" 
 wrote:










Because this installation has migrated, through the years, from Centos 4 
through 7. And will likely move to CentOS 8 when that finally releases. :)

On Sep 14, 2019, at 1:07 PM, ebr...@whitehorsetc.com wrote:
Great, how'd that get on a centos7 install? 




Eric's email, phone







On Sat, Sep 14, 2019 at 9:08 AM -0600, "Roxanne Sandesara" 
 wrote:










OK. I found it. I had an old repo in place for qmailtoaster-plus that was 
trying to point to that fqdn. I have disabled that.

On Sep 9, 2019, at 8:31 AM, Gary Bowling  wrote:

  

  
  





Agreed. Checked my old backups, I've not had qtp Listed
  anywhere in any of the repo files in years. And have had no
  problem with yum updates.





Gary




On 9/9/2019 8:23 AM, Eric Broch wrote:


There
  is a web page pointed to by qtp.qmailtoaster.com, however, the DNS
  server has gone down in the past 2 months and had to be rebuilt.
  That record may have been missed.
  

  

  It should not affect the repositories, though.
  

  

  On 9/9/2019 6:05 AM, Eric Broch wrote:
  

  There is not a repo being pointed to by
the fqdn qtp.qmailtoaster.com.




I don't know how often I have to say this.




If you're getting a timeout with yum for the above fqdn either
something has been added to your repository file our you're
working off an old file left over from CentOS 5/6.






On 9/9/2019 5:52 AM, Eric Broch wrote:



  

  qtp.qmailtoatser.COM is timing out very often
  

  

  .ORG is fine
  

  




-


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


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




  
  

-
  

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

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

  

  


  


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















Re: [qmailtoaster] Qmail Toaster Repos Timing Out

2019-09-14 Thread Roxanne Sandesara
Because this installation has migrated, through the years, from Centos 4 
through 7. And will likely move to CentOS 8 when that finally releases. :)

On Sep 14, 2019, at 1:07 PM, ebr...@whitehorsetc.com wrote:

Great, how'd that get on a centos7 install? 

Eric's email, phone




On Sat, Sep 14, 2019 at 9:08 AM -0600, "Roxanne Sandesara" 
mailto:roxie.sil...@gmail.com>> wrote:

OK. I found it. I had an old repo in place for qmailtoaster-plus that was 
trying to point to that fqdn. I have disabled that.


On Sep 9, 2019, at 8:31 AM, Gary Bowling mailto:g...@gbco.us>> 
wrote:



Agreed. Checked my old backups, I've not had qtp Listed anywhere in any of 
the repo files in years. And have had no problem with yum updates.



Gary



On 9/9/2019 8:23 AM, Eric Broch wrote:
> There is a web page pointed to by qtp.qmailtoaster.com 
> , however, the DNS server has gone down in the 
> past 2 months and had to be rebuilt. That record may have been missed. 
> 
> It should not affect the repositories, though. 
> 
> On 9/9/2019 6:05 AM, Eric Broch wrote: 
>> There is not a repo being pointed to by the fqdn qtp.qmailtoaster.com 
>> . 
>> 
>> I don't know how often I have to say this. 
>> 
>> If you're getting a timeout with yum for the above fqdn either something has 
>> been added to your repository file our you're working off an old file left 
>> over from CentOS 5/6. 
>> 
>> 
>> On 9/9/2019 5:52 AM, Eric Broch wrote: 
>>> 
>>> qtp.qmailtoatser.COM  is timing out very 
>>> often 
>>> 
>>> .ORG is fine 
>>> 
>> 
>> - 
>> To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com 
>>  
>> For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com 
>>  
>> 
> 
> - 
> To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com 
>  
> For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com 
>  
> 
> 
- To 
unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com 
 For additional 
commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com 




Re: [qmailtoaster] Qmail Toaster Repos Timing Out

2019-09-14 Thread ebroch
Great, how'd that get on a centos7 install? 




Eric's email, phone







On Sat, Sep 14, 2019 at 9:08 AM -0600, "Roxanne Sandesara" 
 wrote:










OK. I found it. I had an old repo in place for qmailtoaster-plus that was 
trying to point to that fqdn. I have disabled that.

On Sep 9, 2019, at 8:31 AM, Gary Bowling  wrote:

  

  
  





Agreed. Checked my old backups, I've not had qtp Listed
  anywhere in any of the repo files in years. And have had no
  problem with yum updates.





Gary




On 9/9/2019 8:23 AM, Eric Broch wrote:


There
  is a web page pointed to by qtp.qmailtoaster.com, however, the DNS
  server has gone down in the past 2 months and had to be rebuilt.
  That record may have been missed.
  

  

  It should not affect the repositories, though.
  

  

  On 9/9/2019 6:05 AM, Eric Broch wrote:
  

  There is not a repo being pointed to by
the fqdn qtp.qmailtoaster.com.




I don't know how often I have to say this.




If you're getting a timeout with yum for the above fqdn either
something has been added to your repository file our you're
working off an old file left over from CentOS 5/6.






On 9/9/2019 5:52 AM, Eric Broch wrote:



  

  qtp.qmailtoatser.COM is timing out very often
  

  

  .ORG is fine
  

  




-


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


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




  
  

-
  

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

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

  

  


  


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









Re: [qmailtoaster] Qmail Toaster Repos Timing Out

2019-09-14 Thread Roxanne Sandesara
OK. I found it. I had an old repo in place for qmailtoaster-plus that was 
trying to point to that fqdn. I have disabled that.


On Sep 9, 2019, at 8:31 AM, Gary Bowling  wrote:



Agreed. Checked my old backups, I've not had qtp Listed anywhere in any of 
the repo files in years. And have had no problem with yum updates.



Gary



On 9/9/2019 8:23 AM, Eric Broch wrote:
> There is a web page pointed to by qtp.qmailtoaster.com, however, the DNS 
> server has gone down in the past 2 months and had to be rebuilt. That record 
> may have been missed. 
> 
> It should not affect the repositories, though. 
> 
> On 9/9/2019 6:05 AM, Eric Broch wrote: 
>> There is not a repo being pointed to by the fqdn qtp.qmailtoaster.com. 
>> 
>> I don't know how often I have to say this. 
>> 
>> If you're getting a timeout with yum for the above fqdn either something has 
>> been added to your repository file our you're working off an old file left 
>> over from CentOS 5/6. 
>> 
>> 
>> On 9/9/2019 5:52 AM, Eric Broch wrote: 
>>> 
>>> qtp.qmailtoatser.COM is timing out very often 
>>> 
>>> .ORG is fine 
>>> 
>> 
>> - 
>> To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com 
>>  
>> For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com 
>>  
>> 
> 
> - 
> To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com 
>  
> For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com 
>  
> 
> 
- To 
unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com For 
additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com