Re: [qmailtoaster] Re: qtp-newmodel build fail

2011-01-05 Thread Randy Katz

ok, this issue is fixed now, and thank you for the run copy, it helped.

On 1/5/2011 11:19 PM, Tony White wrote:

This is mine for what it is worth..


#!/bin/sh
QMAILDUID=`id -u vpopmail`
NOFILESGID=`id -g vpopmail`
MAXSMTPD=`cat /var/qmail/control/concurrencyincoming`
SPAMDYKE="/usr/local/bin/spamdyke"
SPAMDYKE_CONF="/etc/spamdyke/spamdyke.conf"
SMTPD="/var/qmail/bin/qmail-smtpd"
TCP_CDB="/etc/tcprules.d/tcp.smtp.cdb"
HOSTNAME=`hostname`
VCHKPW="/home/vpopmail/bin/vchkpw"
REQUIRE_AUTH=0

exec /usr/bin/softlimit -m 6400 \
 /usr/bin/tcpserver -v -R -H -l $HOSTNAME -x $TCP_CDB -c 
"$MAXSMTPD" \

 -u "$QMAILDUID" -g "$NOFILESGID" 0 smtp \
 $SPAMDYKE --config-file $SPAMDYKE_CONF \
 $SMTPD $VCHKPW /bin/true 2>&1



On 06/01/2011 5:21 PM, Randy Katz wrote:

Hi Eric,

Just to let you know if you had read my message you would see it is 
not a firewall issue. Do you happen
to have a fresh /var/qmail/supervise/smtp/run on hand? At this point 
I am concerned with that and the
fact that no users receive mail, with this message, and I have 
searched plenty:


(UNAUTHENTICATED SENDER)

Not sure if it has anything to do with a line or two in the database 
(MySQL).


Be well,
Randy

On 1/5/2011 10:10 PM, Eric Broch wrote:

 Firewall?

On 1/5/2011 10:47 PM, Randy Katz wrote:

Hi,

Yes port 25 is listening, works from localhost fine. I fixed this 
part by tweaking /var/qmail/supervise/smtp/run
a bit. If anyone has a /var/qmail/supervise/smtp/run they would 
like to share that would ease my mind a bit as mine
might have changed a bit over time. Also, at this point port 25 is 
open but mail is being rejected with the following

message in smtp log:

(UNAUTHENTICATED SENDER)

I looked and saw one guy cleaned the queue, this did not do it for 
me. Please if anyone has a quick answer about this

it would save a lot of hardship now.

And yes! qmailctl show showed qmail running!

Thnks in advance,
Randy

On 1/5/2011 8:51 PM, Tony White wrote:

Hi Randy,
  What is the output of
netstat -nl
Are there any processes listening on port 25?

Does qmailctl stat show that qmail is running?

I assume you have "qmailctl start" after a build just in case?


On 06/01/2011 3:32 PM, Randy Katz wrote:

HELP!

On 1/5/2011 8:10 PM, Randy Katz wrote:
Ok, that worked well, thanks, for some reason I thought I had 
done that in the beginning...
however, now port 25 is no longer open outside the box! I 
checked firewall and even cleared
it and there is nothing for port 25, localhost works fine, what 
can I check!


Thanks.

On 1/5/2011 5:38 PM, Eric Shubert wrote:

On 01/05/2011 03:23 PM, Randy Katz wrote:

Hi,

I am trying to do the upgrade qtp-newmodel and am getting this 
failure,

did a search do not have any results about it:

+ cd /usr/src/redhat/BUILD
+ rm -rf djbdns-1.05
+ exit 0
Installing djbdns-1.05-1.0.6 in the sandbox ...
error: Failed dependencies:
djbdns-extcache conflicts with djbdns-1.05-1.0.6.i686
djbdns conflicts with djbdns-extcache-1.05-1.0.6.i686
djbdns-localcache conflicts with djbdns-extcache-1.05-1.0.6.i686
djbdns-extcache conflicts with djbdns-localcache-1.05-1.0.6.i686

Is there a way to figure out all the dependencies without 
having to do a

rebuild of the sandbox each time? I notice when I
do NOT rebuild the sandbox it fails right away.

Thank you in advance,
Randy Katz

- 



djbdns was removed from qtp-newmodel nearly 3 years ago, 
because it wasn't working, and it's not technically a *-toaster 
package. You should:
1) be sure you have qmailtoaster-plus.repo-0.2-2 installed. If 
not, follow the instructions here: 
http://qtp.qmailtoaster.com/trac/wiki/WikiStart#a1-InstallQTPRepository 


2) yum update qmailtoaster-plus
3) then try qtp-newmodel again




- 

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...@qma

Re: [qmailtoaster] Re: qtp-newmodel build fail

2011-01-05 Thread Tony White

This is mine for what it is worth..


#!/bin/sh
QMAILDUID=`id -u vpopmail`
NOFILESGID=`id -g vpopmail`
MAXSMTPD=`cat /var/qmail/control/concurrencyincoming`
SPAMDYKE="/usr/local/bin/spamdyke"
SPAMDYKE_CONF="/etc/spamdyke/spamdyke.conf"
SMTPD="/var/qmail/bin/qmail-smtpd"
TCP_CDB="/etc/tcprules.d/tcp.smtp.cdb"
HOSTNAME=`hostname`
VCHKPW="/home/vpopmail/bin/vchkpw"
REQUIRE_AUTH=0

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



On 06/01/2011 5:21 PM, Randy Katz wrote:

Hi Eric,

Just to let you know if you had read my message you would see it is not a 
firewall issue. Do you happen
to have a fresh /var/qmail/supervise/smtp/run on hand? At this point I am 
concerned with that and the
fact that no users receive mail, with this message, and I have searched plenty:

(UNAUTHENTICATED SENDER)

Not sure if it has anything to do with a line or two in the database (MySQL).

Be well,
Randy

On 1/5/2011 10:10 PM, Eric Broch wrote:

 Firewall?

On 1/5/2011 10:47 PM, Randy Katz wrote:

Hi,

Yes port 25 is listening, works from localhost fine. I fixed this part by 
tweaking /var/qmail/supervise/smtp/run
a bit. If anyone has a /var/qmail/supervise/smtp/run they would like to share 
that would ease my mind a bit as mine
might have changed a bit over time. Also, at this point port 25 is open but 
mail is being rejected with the following
message in smtp log:

(UNAUTHENTICATED SENDER)

I looked and saw one guy cleaned the queue, this did not do it for me. Please 
if anyone has a quick answer about this
it would save a lot of hardship now.

And yes! qmailctl show showed qmail running!

Thnks in advance,
Randy

On 1/5/2011 8:51 PM, Tony White wrote:

Hi Randy,
  What is the output of
netstat -nl
Are there any processes listening on port 25?

Does qmailctl stat show that qmail is running?

I assume you have "qmailctl start" after a build just in case?


On 06/01/2011 3:32 PM, Randy Katz wrote:

HELP!

On 1/5/2011 8:10 PM, Randy Katz wrote:

Ok, that worked well, thanks, for some reason I thought I had done that in the 
beginning...
however, now port 25 is no longer open outside the box! I checked firewall and 
even cleared
it and there is nothing for port 25, localhost works fine, what can I check!

Thanks.

On 1/5/2011 5:38 PM, Eric Shubert wrote:

On 01/05/2011 03:23 PM, Randy Katz wrote:

Hi,

I am trying to do the upgrade qtp-newmodel and am getting this failure,
did a search do not have any results about it:

+ cd /usr/src/redhat/BUILD
+ rm -rf djbdns-1.05
+ exit 0
Installing djbdns-1.05-1.0.6 in the sandbox ...
error: Failed dependencies:
djbdns-extcache conflicts with djbdns-1.05-1.0.6.i686
djbdns conflicts with djbdns-extcache-1.05-1.0.6.i686
djbdns-localcache conflicts with djbdns-extcache-1.05-1.0.6.i686
djbdns-extcache conflicts with djbdns-localcache-1.05-1.0.6.i686

Is there a way to figure out all the dependencies without having to do a
rebuild of the sandbox each time? I notice when I
do NOT rebuild the sandbox it fails right away.

Thank you in advance,
Randy Katz

-


djbdns was removed from qtp-newmodel nearly 3 years ago, because it wasn't working, and it's not technically a 
*-toaster package. You should:
1) be sure you have qmailtoaster-plus.repo-0.2-2 installed. If not, follow the instructions here: 
http://qtp.qmailtoaster.com/trac/wiki/WikiStart#a1-InstallQTPRepository

2) yum update qmailtoaster-plus
3) then try qtp-newmodel again




-
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: qtp-newmodel build fail

2011-01-05 Thread Tony White

Randy,
Can you watch the log using vwatchall to see if it is just
rejecting deliveries?
Are you on the same server for mail?
have you telneted to the server on port 25 and tried a manual send?
ie
telnet host.name.com 25


On 06/01/2011 5:27 PM, Randy Katz wrote:

Oops, my apologies, it has racked my brain, this was meant to go to Eric only, 
not to the list, sorry!

On 1/5/2011 10:21 PM, Randy Katz wrote:

Hi Eric,

Just to let you know if you had read my message you would see it is not a 
firewall issue. Do you happen
to have a fresh /var/qmail/supervise/smtp/run on hand? At this point I am 
concerned with that and the
fact that no users receive mail, with this message, and I have searched plenty:

(UNAUTHENTICATED SENDER)

Not sure if it has anything to do with a line or two in the database (MySQL).

Be well,
Randy

On 1/5/2011 10:10 PM, Eric Broch wrote:

 Firewall?

On 1/5/2011 10:47 PM, Randy Katz wrote:

Hi,

Yes port 25 is listening, works from localhost fine. I fixed this part by 
tweaking /var/qmail/supervise/smtp/run
a bit. If anyone has a /var/qmail/supervise/smtp/run they would like to share 
that would ease my mind a bit as mine
might have changed a bit over time. Also, at this point port 25 is open but 
mail is being rejected with the following
message in smtp log:

(UNAUTHENTICATED SENDER)

I looked and saw one guy cleaned the queue, this did not do it for me. Please 
if anyone has a quick answer about this
it would save a lot of hardship now.

And yes! qmailctl show showed qmail running!

Thnks in advance,
Randy

On 1/5/2011 8:51 PM, Tony White wrote:

Hi Randy,
  What is the output of
netstat -nl
Are there any processes listening on port 25?

Does qmailctl stat show that qmail is running?

I assume you have "qmailctl start" after a build just in case?


On 06/01/2011 3:32 PM, Randy Katz wrote:

HELP!

On 1/5/2011 8:10 PM, Randy Katz wrote:

Ok, that worked well, thanks, for some reason I thought I had done that in the 
beginning...
however, now port 25 is no longer open outside the box! I checked firewall and 
even cleared
it and there is nothing for port 25, localhost works fine, what can I check!

Thanks.

On 1/5/2011 5:38 PM, Eric Shubert wrote:

On 01/05/2011 03:23 PM, Randy Katz wrote:

Hi,

I am trying to do the upgrade qtp-newmodel and am getting this failure,
did a search do not have any results about it:

+ cd /usr/src/redhat/BUILD
+ rm -rf djbdns-1.05
+ exit 0
Installing djbdns-1.05-1.0.6 in the sandbox ...
error: Failed dependencies:
djbdns-extcache conflicts with djbdns-1.05-1.0.6.i686
djbdns conflicts with djbdns-extcache-1.05-1.0.6.i686
djbdns-localcache conflicts with djbdns-extcache-1.05-1.0.6.i686
djbdns-extcache conflicts with djbdns-localcache-1.05-1.0.6.i686

Is there a way to figure out all the dependencies without having to do a
rebuild of the sandbox each time? I notice when I
do NOT rebuild the sandbox it fails right away.

Thank you in advance,
Randy Katz

-


djbdns was removed from qtp-newmodel nearly 3 years ago, because it wasn't working, and it's not technically a 
*-toaster package. You should:
1) be sure you have qmailtoaster-plus.repo-0.2-2 installed. If not, follow the instructions here: 
http://qtp.qmailtoaster.com/trac/wiki/WikiStart#a1-InstallQTPRepository

2) yum update qmailtoaster-plus
3) then try qtp-newmodel again




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






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









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

Re: [qmailtoaster] Re: qtp-newmodel build fail

2011-01-05 Thread Randy Katz
Oops, my apologies, it has racked my brain, this was meant to go to Eric 
only, not to the list, sorry!


On 1/5/2011 10:21 PM, Randy Katz wrote:

Hi Eric,

Just to let you know if you had read my message you would see it is 
not a firewall issue. Do you happen
to have a fresh /var/qmail/supervise/smtp/run on hand? At this point I 
am concerned with that and the
fact that no users receive mail, with this message, and I have 
searched plenty:


(UNAUTHENTICATED SENDER)

Not sure if it has anything to do with a line or two in the database 
(MySQL).


Be well,
Randy

On 1/5/2011 10:10 PM, Eric Broch wrote:

 Firewall?

On 1/5/2011 10:47 PM, Randy Katz wrote:

Hi,

Yes port 25 is listening, works from localhost fine. I fixed this 
part by tweaking /var/qmail/supervise/smtp/run
a bit. If anyone has a /var/qmail/supervise/smtp/run they would like 
to share that would ease my mind a bit as mine
might have changed a bit over time. Also, at this point port 25 is 
open but mail is being rejected with the following

message in smtp log:

(UNAUTHENTICATED SENDER)

I looked and saw one guy cleaned the queue, this did not do it for 
me. Please if anyone has a quick answer about this

it would save a lot of hardship now.

And yes! qmailctl show showed qmail running!

Thnks in advance,
Randy

On 1/5/2011 8:51 PM, Tony White wrote:

Hi Randy,
  What is the output of
netstat -nl
Are there any processes listening on port 25?

Does qmailctl stat show that qmail is running?

I assume you have "qmailctl start" after a build just in case?


On 06/01/2011 3:32 PM, Randy Katz wrote:

HELP!

On 1/5/2011 8:10 PM, Randy Katz wrote:
Ok, that worked well, thanks, for some reason I thought I had 
done that in the beginning...
however, now port 25 is no longer open outside the box! I checked 
firewall and even cleared
it and there is nothing for port 25, localhost works fine, what 
can I check!


Thanks.

On 1/5/2011 5:38 PM, Eric Shubert wrote:

On 01/05/2011 03:23 PM, Randy Katz wrote:

Hi,

I am trying to do the upgrade qtp-newmodel and am getting this 
failure,

did a search do not have any results about it:

+ cd /usr/src/redhat/BUILD
+ rm -rf djbdns-1.05
+ exit 0
Installing djbdns-1.05-1.0.6 in the sandbox ...
error: Failed dependencies:
djbdns-extcache conflicts with djbdns-1.05-1.0.6.i686
djbdns conflicts with djbdns-extcache-1.05-1.0.6.i686
djbdns-localcache conflicts with djbdns-extcache-1.05-1.0.6.i686
djbdns-extcache conflicts with djbdns-localcache-1.05-1.0.6.i686

Is there a way to figure out all the dependencies without 
having to do a

rebuild of the sandbox each time? I notice when I
do NOT rebuild the sandbox it fails right away.

Thank you in advance,
Randy Katz

- 



djbdns was removed from qtp-newmodel nearly 3 years ago, because 
it wasn't working, and it's not technically a *-toaster package. 
You should:
1) be sure you have qmailtoaster-plus.repo-0.2-2 installed. If 
not, follow the instructions here: 
http://qtp.qmailtoaster.com/trac/wiki/WikiStart#a1-InstallQTPRepository 


2) yum update qmailtoaster-plus
3) then try qtp-newmodel again




- 

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

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







- 

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

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










- 

Qmailtoaster is sponsored by Vickers Consulting Group 
(www.vickersconsulting.com)
   Vickers Consulting Group offers Qmailtoaster support and 
installations.

 If you need professional help with your setup, contact them today!
- 

Please visit qmailtoaster.com for the latest news, updates, and 
packages.
 To unsubscribe, e-mail: 
qmailtoaster-list-unsu

Re: [qmailtoaster] Re: qtp-newmodel build fail

2011-01-05 Thread Randy Katz
No, firewall is clear, and I fixed the smtp/port 25 issue (below), 
concerned with users

not receiving ANY MAIL now (below as well):

On 1/5/2011 10:10 PM, Eric Broch wrote:

 Firewall?

On 1/5/2011 10:47 PM, Randy Katz wrote:

Hi,

Yes port 25 is listening, works from localhost fine. I fixed this 
part by tweaking /var/qmail/supervise/smtp/run
a bit. If anyone has a /var/qmail/supervise/smtp/run they would like 
to share that would ease my mind a bit as mine
might have changed a bit over time. Also, at this point port 25 is 
open but mail is being rejected with the following

message in smtp log:

(UNAUTHENTICATED SENDER)

I looked and saw one guy cleaned the queue, this did not do it for 
me. Please if anyone has a quick answer about this

it would save a lot of hardship now.

And yes! qmailctl show showed qmail running!

Thnks in advance,
Randy

On 1/5/2011 8:51 PM, Tony White wrote:

Hi Randy,
  What is the output of
netstat -nl
Are there any processes listening on port 25?

Does qmailctl stat show that qmail is running?

I assume you have "qmailctl start" after a build just in case?


On 06/01/2011 3:32 PM, Randy Katz wrote:

HELP!

On 1/5/2011 8:10 PM, Randy Katz wrote:
Ok, that worked well, thanks, for some reason I thought I had done 
that in the beginning...
however, now port 25 is no longer open outside the box! I checked 
firewall and even cleared
it and there is nothing for port 25, localhost works fine, what 
can I check!


Thanks.

On 1/5/2011 5:38 PM, Eric Shubert wrote:

On 01/05/2011 03:23 PM, Randy Katz wrote:

Hi,

I am trying to do the upgrade qtp-newmodel and am getting this 
failure,

did a search do not have any results about it:

+ cd /usr/src/redhat/BUILD
+ rm -rf djbdns-1.05
+ exit 0
Installing djbdns-1.05-1.0.6 in the sandbox ...
error: Failed dependencies:
djbdns-extcache conflicts with djbdns-1.05-1.0.6.i686
djbdns conflicts with djbdns-extcache-1.05-1.0.6.i686
djbdns-localcache conflicts with djbdns-extcache-1.05-1.0.6.i686
djbdns-extcache conflicts with djbdns-localcache-1.05-1.0.6.i686

Is there a way to figure out all the dependencies without having 
to do a

rebuild of the sandbox each time? I notice when I
do NOT rebuild the sandbox it fails right away.

Thank you in advance,
Randy Katz

- 



djbdns was removed from qtp-newmodel nearly 3 years ago, because 
it wasn't working, and it's not technically a *-toaster package. 
You should:
1) be sure you have qmailtoaster-plus.repo-0.2-2 installed. If 
not, follow the instructions here: 
http://qtp.qmailtoaster.com/trac/wiki/WikiStart#a1-InstallQTPRepository 


2) yum update qmailtoaster-plus
3) then try qtp-newmodel again




- 

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

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







- 

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

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










- 

Qmailtoaster is sponsored by Vickers Consulting Group 
(www.vickersconsulting.com)
   Vickers Consulting Group offers Qmailtoaster support and 
installations.

 If you need professional help with your setup, contact them today!
- 

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






- 

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: qtp-newmodel build fail

2011-01-05 Thread Randy Katz

Hi Eric,

Just to let you know if you had read my message you would see it is not 
a firewall issue. Do you happen
to have a fresh /var/qmail/supervise/smtp/run on hand? At this point I 
am concerned with that and the
fact that no users receive mail, with this message, and I have searched 
plenty:


(UNAUTHENTICATED SENDER)

Not sure if it has anything to do with a line or two in the database 
(MySQL).


Be well,
Randy

On 1/5/2011 10:10 PM, Eric Broch wrote:

 Firewall?

On 1/5/2011 10:47 PM, Randy Katz wrote:

Hi,

Yes port 25 is listening, works from localhost fine. I fixed this 
part by tweaking /var/qmail/supervise/smtp/run
a bit. If anyone has a /var/qmail/supervise/smtp/run they would like 
to share that would ease my mind a bit as mine
might have changed a bit over time. Also, at this point port 25 is 
open but mail is being rejected with the following

message in smtp log:

(UNAUTHENTICATED SENDER)

I looked and saw one guy cleaned the queue, this did not do it for 
me. Please if anyone has a quick answer about this

it would save a lot of hardship now.

And yes! qmailctl show showed qmail running!

Thnks in advance,
Randy

On 1/5/2011 8:51 PM, Tony White wrote:

Hi Randy,
  What is the output of
netstat -nl
Are there any processes listening on port 25?

Does qmailctl stat show that qmail is running?

I assume you have "qmailctl start" after a build just in case?


On 06/01/2011 3:32 PM, Randy Katz wrote:

HELP!

On 1/5/2011 8:10 PM, Randy Katz wrote:
Ok, that worked well, thanks, for some reason I thought I had done 
that in the beginning...
however, now port 25 is no longer open outside the box! I checked 
firewall and even cleared
it and there is nothing for port 25, localhost works fine, what 
can I check!


Thanks.

On 1/5/2011 5:38 PM, Eric Shubert wrote:

On 01/05/2011 03:23 PM, Randy Katz wrote:

Hi,

I am trying to do the upgrade qtp-newmodel and am getting this 
failure,

did a search do not have any results about it:

+ cd /usr/src/redhat/BUILD
+ rm -rf djbdns-1.05
+ exit 0
Installing djbdns-1.05-1.0.6 in the sandbox ...
error: Failed dependencies:
djbdns-extcache conflicts with djbdns-1.05-1.0.6.i686
djbdns conflicts with djbdns-extcache-1.05-1.0.6.i686
djbdns-localcache conflicts with djbdns-extcache-1.05-1.0.6.i686
djbdns-extcache conflicts with djbdns-localcache-1.05-1.0.6.i686

Is there a way to figure out all the dependencies without having 
to do a

rebuild of the sandbox each time? I notice when I
do NOT rebuild the sandbox it fails right away.

Thank you in advance,
Randy Katz

- 



djbdns was removed from qtp-newmodel nearly 3 years ago, because 
it wasn't working, and it's not technically a *-toaster package. 
You should:
1) be sure you have qmailtoaster-plus.repo-0.2-2 installed. If 
not, follow the instructions here: 
http://qtp.qmailtoaster.com/trac/wiki/WikiStart#a1-InstallQTPRepository 


2) yum update qmailtoaster-plus
3) then try qtp-newmodel again




- 

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

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







- 

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

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










- 

Qmailtoaster is sponsored by Vickers Consulting Group 
(www.vickersconsulting.com)
   Vickers Consulting Group offers Qmailtoaster support and 
installations.

 If you need professional help with your setup, contact them today!
- 

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






-

Re: [qmailtoaster] Re: qtp-newmodel build fail

2011-01-05 Thread Eric Broch

 Firewall?

On 1/5/2011 10:47 PM, Randy Katz wrote:

Hi,

Yes port 25 is listening, works from localhost fine. I fixed this part 
by tweaking /var/qmail/supervise/smtp/run
a bit. If anyone has a /var/qmail/supervise/smtp/run they would like 
to share that would ease my mind a bit as mine
might have changed a bit over time. Also, at this point port 25 is 
open but mail is being rejected with the following

message in smtp log:

(UNAUTHENTICATED SENDER)

I looked and saw one guy cleaned the queue, this did not do it for me. 
Please if anyone has a quick answer about this

it would save a lot of hardship now.

And yes! qmailctl show showed qmail running!

Thnks in advance,
Randy

On 1/5/2011 8:51 PM, Tony White wrote:

Hi Randy,
  What is the output of
netstat -nl
Are there any processes listening on port 25?

Does qmailctl stat show that qmail is running?

I assume you have "qmailctl start" after a build just in case?


On 06/01/2011 3:32 PM, Randy Katz wrote:

HELP!

On 1/5/2011 8:10 PM, Randy Katz wrote:
Ok, that worked well, thanks, for some reason I thought I had done 
that in the beginning...
however, now port 25 is no longer open outside the box! I checked 
firewall and even cleared
it and there is nothing for port 25, localhost works fine, what can 
I check!


Thanks.

On 1/5/2011 5:38 PM, Eric Shubert wrote:

On 01/05/2011 03:23 PM, Randy Katz wrote:

Hi,

I am trying to do the upgrade qtp-newmodel and am getting this 
failure,

did a search do not have any results about it:

+ cd /usr/src/redhat/BUILD
+ rm -rf djbdns-1.05
+ exit 0
Installing djbdns-1.05-1.0.6 in the sandbox ...
error: Failed dependencies:
djbdns-extcache conflicts with djbdns-1.05-1.0.6.i686
djbdns conflicts with djbdns-extcache-1.05-1.0.6.i686
djbdns-localcache conflicts with djbdns-extcache-1.05-1.0.6.i686
djbdns-extcache conflicts with djbdns-localcache-1.05-1.0.6.i686

Is there a way to figure out all the dependencies without having 
to do a

rebuild of the sandbox each time? I notice when I
do NOT rebuild the sandbox it fails right away.

Thank you in advance,
Randy Katz

- 



djbdns was removed from qtp-newmodel nearly 3 years ago, because 
it wasn't working, and it's not technically a *-toaster package. 
You should:
1) be sure you have qmailtoaster-plus.repo-0.2-2 installed. If 
not, follow the instructions here: 
http://qtp.qmailtoaster.com/trac/wiki/WikiStart#a1-InstallQTPRepository 


2) yum update qmailtoaster-plus
3) then try qtp-newmodel again




- 

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

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







- 

Qmailtoaster is sponsored by Vickers Consulting Group 
(www.vickersconsulting.com)
   Vickers Consulting Group offers Qmailtoaster support and 
installations.

 If you need professional help with your setup, contact them today!
- 

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










- 

Qmailtoaster is sponsored by Vickers Consulting Group 
(www.vickersconsulting.com)
   Vickers Consulting Group offers Qmailtoaster support and 
installations.

 If you need professional help with your setup, contact them today!
- 

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






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

Re: [qmailtoaster] Re: qtp-newmodel build fail

2011-01-05 Thread Randy Katz

Hi,

Yes port 25 is listening, works from localhost fine. I fixed this part 
by tweaking /var/qmail/supervise/smtp/run
a bit. If anyone has a /var/qmail/supervise/smtp/run they would like to 
share that would ease my mind a bit as mine
might have changed a bit over time. Also, at this point port 25 is open 
but mail is being rejected with the following

message in smtp log:

(UNAUTHENTICATED SENDER)

I looked and saw one guy cleaned the queue, this did not do it for me. 
Please if anyone has a quick answer about this

it would save a lot of hardship now.

And yes! qmailctl show showed qmail running!

Thnks in advance,
Randy

On 1/5/2011 8:51 PM, Tony White wrote:

Hi Randy,
  What is the output of
netstat -nl
Are there any processes listening on port 25?

Does qmailctl stat show that qmail is running?

I assume you have "qmailctl start" after a build just in case?


On 06/01/2011 3:32 PM, Randy Katz wrote:

HELP!

On 1/5/2011 8:10 PM, Randy Katz wrote:
Ok, that worked well, thanks, for some reason I thought I had done 
that in the beginning...
however, now port 25 is no longer open outside the box! I checked 
firewall and even cleared
it and there is nothing for port 25, localhost works fine, what can 
I check!


Thanks.

On 1/5/2011 5:38 PM, Eric Shubert wrote:

On 01/05/2011 03:23 PM, Randy Katz wrote:

Hi,

I am trying to do the upgrade qtp-newmodel and am getting this 
failure,

did a search do not have any results about it:

+ cd /usr/src/redhat/BUILD
+ rm -rf djbdns-1.05
+ exit 0
Installing djbdns-1.05-1.0.6 in the sandbox ...
error: Failed dependencies:
djbdns-extcache conflicts with djbdns-1.05-1.0.6.i686
djbdns conflicts with djbdns-extcache-1.05-1.0.6.i686
djbdns-localcache conflicts with djbdns-extcache-1.05-1.0.6.i686
djbdns-extcache conflicts with djbdns-localcache-1.05-1.0.6.i686

Is there a way to figure out all the dependencies without having 
to do a

rebuild of the sandbox each time? I notice when I
do NOT rebuild the sandbox it fails right away.

Thank you in advance,
Randy Katz

- 



djbdns was removed from qtp-newmodel nearly 3 years ago, because it 
wasn't working, and it's not technically a *-toaster package. You 
should:
1) be sure you have qmailtoaster-plus.repo-0.2-2 installed. If not, 
follow the instructions here: 
http://qtp.qmailtoaster.com/trac/wiki/WikiStart#a1-InstallQTPRepository 


2) yum update qmailtoaster-plus
3) then try qtp-newmodel again




- 

Qmailtoaster is sponsored by Vickers Consulting Group 
(www.vickersconsulting.com)
   Vickers Consulting Group offers Qmailtoaster support and 
installations.

 If you need professional help with your setup, contact them today!
- 

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







- 

Qmailtoaster is sponsored by Vickers Consulting Group 
(www.vickersconsulting.com)
   Vickers Consulting Group offers Qmailtoaster support and 
installations.

 If you need professional help with your setup, contact them today!
- 

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










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

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

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




Re: [qmailtoaster] Re: qtp-newmodel build fail

2011-01-05 Thread Tony White

Hi Randy,
  What is the output of
netstat -nl
Are there any processes listening on port 25?

Does qmailctl stat show that qmail is running?

I assume you have "qmailctl start" after a build just in case?


On 06/01/2011 3:32 PM, Randy Katz wrote:

HELP!

On 1/5/2011 8:10 PM, Randy Katz wrote:

Ok, that worked well, thanks, for some reason I thought I had done that in the 
beginning...
however, now port 25 is no longer open outside the box! I checked firewall and 
even cleared
it and there is nothing for port 25, localhost works fine, what can I check!

Thanks.

On 1/5/2011 5:38 PM, Eric Shubert wrote:

On 01/05/2011 03:23 PM, Randy Katz wrote:

Hi,

I am trying to do the upgrade qtp-newmodel and am getting this failure,
did a search do not have any results about it:

+ cd /usr/src/redhat/BUILD
+ rm -rf djbdns-1.05
+ exit 0
Installing djbdns-1.05-1.0.6 in the sandbox ...
error: Failed dependencies:
djbdns-extcache conflicts with djbdns-1.05-1.0.6.i686
djbdns conflicts with djbdns-extcache-1.05-1.0.6.i686
djbdns-localcache conflicts with djbdns-extcache-1.05-1.0.6.i686
djbdns-extcache conflicts with djbdns-localcache-1.05-1.0.6.i686

Is there a way to figure out all the dependencies without having to do a
rebuild of the sandbox each time? I notice when I
do NOT rebuild the sandbox it fails right away.

Thank you in advance,
Randy Katz

-


djbdns was removed from qtp-newmodel nearly 3 years ago, because it wasn't working, and it's not technically a 
*-toaster package. You should:
1) be sure you have qmailtoaster-plus.repo-0.2-2 installed. If not, follow the instructions here: 
http://qtp.qmailtoaster.com/trac/wiki/WikiStart#a1-InstallQTPRepository

2) yum update qmailtoaster-plus
3) then try qtp-newmodel again




-
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






--
best wishes
  Tony White

Yea Computing Services
http://www.ycs.com.au
4 The Crescent
Yea
Victoria
Australia 3717

Telephone No's
VIC : 03 5797 3344
VIC : 03 9008 5614
TAS : 03 6107 9099
NT  : 08 8921 4049
SA  : 08 7123 0847
NSW : 02 8014 5547
QLD : 07 3123 6647
WA  : 08 6365 2199
FAX : 03 9008 5610 (FAX2Email)
FAX : 03 5797-3288



IMPORTANT NOTICE

This communication including any file attachments is intended solely for
the use of the individual or entity to whom it is addressed. If you are
not the intended recipient, or the person responsible for delivering
this communication to the intended recipient, please immediately notify
the sender by email and delete the original transmission and its
contents. Any unauthorised use, dissemination, forwarding, printing or
copying of this communication including file attachments is prohibited.
It is your responsibility to scan this communication including any file
attachments for viruses and other defects. To the extent permitted by
law, Yea Computing Services and its associates will not be liable for
any loss or damage arising in any way from this communication including
any file attachments.


-
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: qtp-newmodel build fail

2011-01-05 Thread Randy Katz

HELP!

On 1/5/2011 8:10 PM, Randy Katz wrote:
Ok, that worked well, thanks, for some reason I thought I had done 
that in the beginning...
however, now port 25 is no longer open outside the box! I checked 
firewall and even cleared
it and there is nothing for port 25, localhost works fine, what can I 
check!


Thanks.

On 1/5/2011 5:38 PM, Eric Shubert wrote:

On 01/05/2011 03:23 PM, Randy Katz wrote:

Hi,

I am trying to do the upgrade qtp-newmodel and am getting this failure,
did a search do not have any results about it:

+ cd /usr/src/redhat/BUILD
+ rm -rf djbdns-1.05
+ exit 0
Installing djbdns-1.05-1.0.6 in the sandbox ...
error: Failed dependencies:
djbdns-extcache conflicts with djbdns-1.05-1.0.6.i686
djbdns conflicts with djbdns-extcache-1.05-1.0.6.i686
djbdns-localcache conflicts with djbdns-extcache-1.05-1.0.6.i686
djbdns-extcache conflicts with djbdns-localcache-1.05-1.0.6.i686

Is there a way to figure out all the dependencies without having to 
do a

rebuild of the sandbox each time? I notice when I
do NOT rebuild the sandbox it fails right away.

Thank you in advance,
Randy Katz

- 



djbdns was removed from qtp-newmodel nearly 3 years ago, because it 
wasn't working, and it's not technically a *-toaster package. You 
should:
1) be sure you have qmailtoaster-plus.repo-0.2-2 installed. If not, 
follow the instructions here: 
http://qtp.qmailtoaster.com/trac/wiki/WikiStart#a1-InstallQTPRepository

2) yum update qmailtoaster-plus
3) then try qtp-newmodel again




- 

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: qtp-newmodel build fail

2011-01-05 Thread Randy Katz
Ok, that worked well, thanks, for some reason I thought I had done that 
in the beginning...
however, now port 25 is no longer open outside the box! I checked 
firewall and even cleared

it and there is nothing for port 25, localhost works fine, what can I check!

Thanks.

On 1/5/2011 5:38 PM, Eric Shubert wrote:

On 01/05/2011 03:23 PM, Randy Katz wrote:

Hi,

I am trying to do the upgrade qtp-newmodel and am getting this failure,
did a search do not have any results about it:

+ cd /usr/src/redhat/BUILD
+ rm -rf djbdns-1.05
+ exit 0
Installing djbdns-1.05-1.0.6 in the sandbox ...
error: Failed dependencies:
djbdns-extcache conflicts with djbdns-1.05-1.0.6.i686
djbdns conflicts with djbdns-extcache-1.05-1.0.6.i686
djbdns-localcache conflicts with djbdns-extcache-1.05-1.0.6.i686
djbdns-extcache conflicts with djbdns-localcache-1.05-1.0.6.i686

Is there a way to figure out all the dependencies without having to do a
rebuild of the sandbox each time? I notice when I
do NOT rebuild the sandbox it fails right away.

Thank you in advance,
Randy Katz

- 



djbdns was removed from qtp-newmodel nearly 3 years ago, because it 
wasn't working, and it's not technically a *-toaster package. You should:
1) be sure you have qmailtoaster-plus.repo-0.2-2 installed. If not, 
follow the instructions here: 
http://qtp.qmailtoaster.com/trac/wiki/WikiStart#a1-InstallQTPRepository

2) yum update qmailtoaster-plus
3) then try qtp-newmodel again




-
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: qtp-newmodel build fail

2011-01-05 Thread Eric Shubert

On 01/05/2011 03:23 PM, Randy Katz wrote:

Hi,

I am trying to do the upgrade qtp-newmodel and am getting this failure,
did a search do not have any results about it:

+ cd /usr/src/redhat/BUILD
+ rm -rf djbdns-1.05
+ exit 0
Installing djbdns-1.05-1.0.6 in the sandbox ...
error: Failed dependencies:
djbdns-extcache conflicts with djbdns-1.05-1.0.6.i686
djbdns conflicts with djbdns-extcache-1.05-1.0.6.i686
djbdns-localcache conflicts with djbdns-extcache-1.05-1.0.6.i686
djbdns-extcache conflicts with djbdns-localcache-1.05-1.0.6.i686

Is there a way to figure out all the dependencies without having to do a
rebuild of the sandbox each time? I notice when I
do NOT rebuild the sandbox it fails right away.

Thank you in advance,
Randy Katz

-


djbdns was removed from qtp-newmodel nearly 3 years ago, because it 
wasn't working, and it's not technically a *-toaster package. You should:
1) be sure you have qmailtoaster-plus.repo-0.2-2 installed. If not, 
follow the instructions here: 
http://qtp.qmailtoaster.com/trac/wiki/WikiStart#a1-InstallQTPRepository

2) yum update qmailtoaster-plus
3) then try qtp-newmodel again

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