Re: [qmailtoaster] Newmodel error

2008-02-26 Thread Eric Shubes
Hey Phil,

I've got a fix I'd like you to try. (Justice had this right but I managed to
screw it up somehow).

In /opt/qmailtoaster-plus/bin/qtp-config, at/near line 131 change
kernelver=${kernelrelease%-[^-]*}
to
kernelver=$(expr $kernelrelease : \(^[0-9]*\+\.[0-9]*\+\.[0-9]*\))

Then rerun qtp-newmodel, which should give you the option of using the unionfs.

Let me know that it works and I'll be sure to commit it to svn so it gets
into the next release.

Phil Leinhauser wrote:
 OK, Eric, here's what I have:
 
 [EMAIL PROTECTED] ~]# uname -r
 2.6.22.14-72.fc6
 
 [EMAIL PROTECTED] ~]# . qtp-config -s
 [EMAIL PROTECTED] ~]# . qtp-config
 qtp-config v0.2.4
 QMT_WEB=http://www.qmailtoaster.org
 QMT_DEV=http://www.qmailtoaster.org
 SANDBOX=/mnt/qtp-sandbox
 UNIONROOT=/opt/qtp-unionroot
 UPGRADE_DIR=/usr/src/qtp-upgrade
 RPMBUILD_OPTIONS=
 backupdest=/backup/qmailbkup
 useftp=n
 ftpserver=ftp://
 emailinfo=y
 email=postmaster
 removeprevious=n
 
 The -s switch didn't get anything.
 
  x02_kernel_unionfs_switch  -- didn't give anything.
 
 I didn't rerun newmodel.  I'll do that tomorrow.  It's too late now.
 
 Thanks for the help.
 
 Phil
 

-- 
-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] How to not forward messages marked as spam

2008-02-26 Thread curt . qt
I just tried changing exit to exit 99 - stopped delivery of everything
completely... apparently, the exit command won't take arguments in this language

===

The .qmail file isn't a script, so you can't add logic there (that I'm aware
of). Sorry about that bit.

Have you tried
exit 99
in the maildrop script?

I don't see how the EXITCODE variable would be passed back to whatever's
calling maildrop, unless maildrop is 'sourced'. I don't know off hand how
the maildrop script is invoked.

[EMAIL PROTECTED] wrote:
 As I stated in the original request, there are apparently 0 options for a
 forward  line in the .qmail file. An account is set up to either forward
 using
 [address], or to not forward at all.

 How might I go about adding logic to a  line? (That's really the root of
 the
 whole question)

 ===

 Sounds like you'll need to add logic in .qmail to check the exit code from
 mailfilter, and only do the forward if the exit code is 0.

 [EMAIL PROTECTED] wrote:
 I already tried modifying /etc/mail/mailfilter to get it to
 dump local spam and TRY to abort the procedure. Here's what I inserted
 directly
 after reading in
 $VHOME/Maildir/.mailfilter. If the user's .mailfilter contains the line
 SPAMFORWARDDROP=1, the following executes:

 if((/^X-Spam-Status: Yes/:h)  ($SPAMFORWARDDROP == 1))
 {
 log Message deleted as specified by .mailfilter\n
 exception {
 to /home/vpopmail/domains/[the
 domain]/postmaster/Maildir/.Spam/
 }
 log === END ===\n
 EXITCODE=1
 exit
 }

 This works perfectly without having to modify the smtp delivery pipe, but the
 next line in .qmail which contains the forward ([address]) still executes.

 I've also tried setting EXITCODE=99 - no difference.

 =


 I'd look into customizing the /etc/mail/mailfilter script. It's part of the
 maildrop-toaster package, so if you change it, be sure to keep a backup copy
 handy because any changes would probably be clobbered by an upgrade of that
 package.

 --
 -Eric 'shubes'

 =

 [EMAIL PROTECTED] wrote:
 Still no luck on this one - there are apparently 0 options for a forward
 line
 in the .qmail file. An account is set up to either forward using [address],
 or
 to not forward at all.

 Is there no way to forward ONLY IF the message meets certain criteria? (i.e.
 $subject !~/\*\*\* SPAM \*\*\*/)

 This has become a huge issue, particularly for blackberry users.




 --
 -Eric 'shubes'



--
-Eric 'shubes'

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



Re: [qmailtoaster] Newmodel error

2008-02-26 Thread Phil Leinhauser
That's great news Eric. Thanks!

I'll try it tonight and let you know what happens.

Phil


-Original message-
From: Eric \Shubes\ [EMAIL PROTECTED]
Date: Tue, 26 Feb 2008 11:40:42 -0500
To: qmailtoaster-list@qmailtoaster.com
Subject: Re: [qmailtoaster] Newmodel error

 Hey Phil,
 
 I've got a fix I'd like you to try. (Justice had this right but I managed to
 screw it up somehow).
 
 In /opt/qmailtoaster-plus/bin/qtp-config, at/near line 131 change
 kernelver=${kernelrelease%-[^-]*}
 to
 kernelver=$(expr $kernelrelease : \(^[0-9]*\+\.[0-9]*\+\.[0-9]*\))
 
 Then rerun qtp-newmodel, which should give you the option of using the 
 unionfs.
 
 Let me know that it works and I'll be sure to commit it to svn so it gets
 into the next release.
 
 Phil Leinhauser wrote:
  OK, Eric, here's what I have:
  
  [EMAIL PROTECTED] ~]# uname -r
  2.6.22.14-72.fc6
  
  [EMAIL PROTECTED] ~]# . qtp-config -s
  [EMAIL PROTECTED] ~]# . qtp-config
  qtp-config v0.2.4
  QMT_WEB=http://www.qmailtoaster.org
  QMT_DEV=http://www.qmailtoaster.org
  SANDBOX=/mnt/qtp-sandbox
  UNIONROOT=/opt/qtp-unionroot
  UPGRADE_DIR=/usr/src/qtp-upgrade
  RPMBUILD_OPTIONS=
  backupdest=/backup/qmailbkup
  useftp=n
  ftpserver=ftp://
  emailinfo=y
  email=postmaster
  removeprevious=n
  
  The -s switch didn't get anything.
  
   x02_kernel_unionfs_switch  -- didn't give anything.
  
  I didn't rerun newmodel.  I'll do that tomorrow.  It's too late now.
  
  Thanks for the help.
  
  Phil
  
 
 -- 
 -Eric 'shubes'
 
 -
  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]



Re: [qmailtoaster] How to not forward messages marked as spam

2008-02-26 Thread Eric Shubes
Wrong conclusion. maildrop is a shell script, so the exit command is built
in, and takes a single optional argument, the exit status (aka return code).

You'll need to find where/how the maildrop script is invoked to see what's
happening there, and why delivery is terminated. I don't know off hand where
that is.

[EMAIL PROTECTED] wrote:
 I just tried changing exit to exit 99 - stopped delivery of everything
 completely... apparently, the exit command won't take arguments in this 
 language
 
 ===
 
 The .qmail file isn't a script, so you can't add logic there (that I'm aware
 of). Sorry about that bit.
 
 Have you tried
 exit 99
 in the maildrop script?
 
 I don't see how the EXITCODE variable would be passed back to whatever's
 calling maildrop, unless maildrop is 'sourced'. I don't know off hand how
 the maildrop script is invoked.
 
 [EMAIL PROTECTED] wrote:
 As I stated in the original request, there are apparently 0 options for a
 forward  line in the .qmail file. An account is set up to either forward
 using
 [address], or to not forward at all.

 How might I go about adding logic to a  line? (That's really the root of
 the
 whole question)

 ===

 Sounds like you'll need to add logic in .qmail to check the exit code from
 mailfilter, and only do the forward if the exit code is 0.

 [EMAIL PROTECTED] wrote:
 I already tried modifying /etc/mail/mailfilter to get it to
 dump local spam and TRY to abort the procedure. Here's what I inserted
 directly
 after reading in
 $VHOME/Maildir/.mailfilter. If the user's .mailfilter contains the line
 SPAMFORWARDDROP=1, the following executes:

 if((/^X-Spam-Status: Yes/:h)  ($SPAMFORWARDDROP == 1))
 {
 log Message deleted as specified by .mailfilter\n
 exception {
 to /home/vpopmail/domains/[the
 domain]/postmaster/Maildir/.Spam/
 }
 log === END ===\n
 EXITCODE=1
 exit
 }

 This works perfectly without having to modify the smtp delivery pipe, but 
 the
 next line in .qmail which contains the forward ([address]) still executes.

 I've also tried setting EXITCODE=99 - no difference.

 =


 I'd look into customizing the /etc/mail/mailfilter script. It's part of the
 maildrop-toaster package, so if you change it, be sure to keep a backup copy
 handy because any changes would probably be clobbered by an upgrade of that
 package.

 --
 -Eric 'shubes'

 =

 [EMAIL PROTECTED] wrote:
 Still no luck on this one - there are apparently 0 options for a forward
 line
 in the .qmail file. An account is set up to either forward using 
 [address],
 or
 to not forward at all.

 Is there no way to forward ONLY IF the message meets certain criteria? 
 (i.e.
 $subject !~/\*\*\* SPAM \*\*\*/)

 This has become a huge issue, particularly for blackberry users.



 --
 -Eric 'shubes'

 
 
 --
 -Eric 'shubes'
 


-- 
-Eric 'shubes'

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



[qmailtoaster] vacation notices

2008-02-26 Thread Sergio Minini {NETKEY}
Just a quick question before (finally!) going on holidays:
I have an account ( [EMAIL PROTECTED]) that forwards to my e-mail ([EMAIL 
PROTECTED])
and to other account ([EMAIL PROTECTED]). And also sends an auto-responder to 
the
recipient.
The thing is that, if I am setting an auto-responder myself, is there a way to
avoid sending an auto-reply when the mail was forwarded from [EMAIL PROTECTED]
 
Thanks!
 
PS: Is there a way to put the list subscription on hold?
 

Sergio Minini :: NetKey Solutions :: ( 4742.1101 ::  http://www.netkey.com.ar/
http://www.netkey.com.ar 
 


[qmailtoaster] Upgrading from a REALLY old version

2008-02-26 Thread Richard Starkie
Hi All

 

Can someone advise me the easiest way to upgrade QMT  from a really really
old version??

 

I don't want to format the system or loose any data in the mail boxes, like
signatures etc.

 

My package versions are listed below :

 

 qmail-toaster-1.03-1.3.15

 qmailadmin-toaster-1.2.11-1.3.4

 clamav-toaster-0.90.1-1.3.13

 vpopmail-toaster-5.4.17-1.3.4

 control-panel-toaster-0.5-1.3.4

 vqadmin-toaster-2.3.4-1.3.3

 libdomainkeys-toaster-0.68-1.3.3

 courier-authlib-toaster-0.59.2-1.3.6

 ezmlm-toaster-0.53.324-1.3.3

 maildrop-toaster-2.0.3-1.3.5

 squirrelmail-toaster-1.4.9a-1.3.6

 simscan-toaster-1.3.1-1.3.6

 daemontools-toaster-0.76-1.3.3

 libsrs2-toaster-1.0.18-1.3.3

 courier-imap-toaster-4.1.2-1.3.7

 ezmlm-cgi-toaster-0.53.324-1.3.3

 maildrop-toaster-devel-2.0.3-1.3.5

 spamassassin-toaster-3.1.8-1.3.8

 ucspi-tcp-toaster-0.88-1.3.5

 autorespond-toaster-2.0.4-1.3.3

 isoqlog-toaster-2.1-1.3.4

 qmail-pop3d-toaster-1.03-1.3.15

 qmailmrtg-toaster-4.2-1.3.3

 ripmime-toaster-1.4.0.6-1.3.3

 

Thanks in advance

 

Richard



Re: [qmailtoaster] Weird stuff happening on admin-toaster page

2008-02-26 Thread Eric Shubes
Richard Starkie wrote:
 Thanks Eric
 
 is there a command in the toaster version i have by default that will
 perform the upgrade of do I need to start as if it is a new install
 and do it over the top?

You need to install the qmailtoaster-plus package, then run the qtp-newmodel
command. That will do an upgrade in place, and preserve all of your email
and settings.

 BTW where did Ringo come from ?? 

I can hardly believe you had to ask.
http://en.wikipedia.org/wiki/Ringo_Starr
;)

 Ta
 
 Rich
 

-- 
-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] Upgrading from a REALLY old version

2008-02-26 Thread Eric Shubes
Richard Starkie wrote:
 Hi All
 
  
 
 Can someone advise me the easiest way to upgrade QMT  from a really
 really old version??
 
  
 
 I don’t want to format the system or loose any data in the mail boxes,
 like signatures etc.
 
  
 
 My package versions are listed below :
 
  
 
 qmail-toaster-1.03-1.3.15
 
 qmailadmin-toaster-1.2.11-1.3.4
 
 clamav-toaster-0.90.1-1.3.13
 
 vpopmail-toaster-5.4.17-1.3.4
 
 control-panel-toaster-0.5-1.3.4
 
 vqadmin-toaster-2.3.4-1.3.3
 
 libdomainkeys-toaster-0.68-1.3.3
 
 courier-authlib-toaster-0.59.2-1.3.6
 
 ezmlm-toaster-0.53.324-1.3.3
 
 maildrop-toaster-2.0.3-1.3.5
 
 squirrelmail-toaster-1.4.9a-1.3.6
 
 simscan-toaster-1.3.1-1.3.6
 
 daemontools-toaster-0.76-1.3.3
 
 libsrs2-toaster-1.0.18-1.3.3
 
 courier-imap-toaster-4.1.2-1.3.7
 
 ezmlm-cgi-toaster-0.53.324-1.3.3
 
 maildrop-toaster-devel-2.0.3-1.3.5
 
 spamassassin-toaster-3.1.8-1.3.8
 
 ucspi-tcp-toaster-0.88-1.3.5
 
 autorespond-toaster-2.0.4-1.3.3
 
 isoqlog-toaster-2.1-1.3.4
 
 qmail-pop3d-toaster-1.03-1.3.15
 
 qmailmrtg-toaster-4.2-1.3.3
 
 ripmime-toaster-1.4.0.6-1.3.3
 
  
 
 Thanks in advance
 
  
 
 Richard
 

Those packages aren't all that old, Richard. I believe there are toasters
still out there running 1.2.x!

qtp-newmodel should handle your upgrade without a minimum effort. You can
download the qmailtoaster-plus package from http://qtp.qmailtoaster.com.

-- 
-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] Upgrading from a REALLY old version

2008-02-26 Thread Eric Shubes
Eric Shubes wrote:
 Richard Starkie wrote:
 Hi All

  

 Can someone advise me the easiest way to upgrade QMT  from a really
 really old version??

  

 I don’t want to format the system or loose any data in the mail boxes,
 like signatures etc.

  

 My package versions are listed below :

  

 qmail-toaster-1.03-1.3.15
 qmailadmin-toaster-1.2.11-1.3.4
 clamav-toaster-0.90.1-1.3.13
 vpopmail-toaster-5.4.17-1.3.4
 control-panel-toaster-0.5-1.3.4
 vqadmin-toaster-2.3.4-1.3.3
 libdomainkeys-toaster-0.68-1.3.3
 courier-authlib-toaster-0.59.2-1.3.6
 ezmlm-toaster-0.53.324-1.3.3
 maildrop-toaster-2.0.3-1.3.5
 squirrelmail-toaster-1.4.9a-1.3.6
 simscan-toaster-1.3.1-1.3.6
 daemontools-toaster-0.76-1.3.3
 libsrs2-toaster-1.0.18-1.3.3
 courier-imap-toaster-4.1.2-1.3.7
 ezmlm-cgi-toaster-0.53.324-1.3.3
 maildrop-toaster-devel-2.0.3-1.3.5
 spamassassin-toaster-3.1.8-1.3.8
 ucspi-tcp-toaster-0.88-1.3.5
 autorespond-toaster-2.0.4-1.3.3
 isoqlog-toaster-2.1-1.3.4
 qmail-pop3d-toaster-1.03-1.3.15
 qmailmrtg-toaster-4.2-1.3.3
 ripmime-toaster-1.4.0.6-1.3.3
  

 Thanks in advance

  

 Richard

 
 Those packages aren't all that old, Richard. I believe there are toasters
 still out there running 1.2.x!
 
 qtp-newmodel should handle your upgrade without a minimum effort. You can
 download the qmailtoaster-plus package from http://qtp.qmailtoaster.com.
 

I meant to say WITH a minimum effort! ;)

-- 
-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] Weird stuff happening on admin-toaster page

2008-02-26 Thread Richard Starkie
ok then ... so do I just install -plus package or more than just that one
... sorry for being dense 

Re Ringo : I don't need to ask Eric  it just so happens to be the name
everyone that knows me refers to me by  even the wife !  lol 

Ringo :)

-Original Message-
From: Eric Shubes [mailto:[EMAIL PROTECTED] 
Sent: 26 February 2008 21:01
To: qmailtoaster-list@qmailtoaster.com
Subject: Re: [qmailtoaster] Weird stuff happening on admin-toaster page

Richard Starkie wrote:
 Thanks Eric
 
 is there a command in the toaster version i have by default that will
 perform the upgrade of do I need to start as if it is a new install
 and do it over the top?

You need to install the qmailtoaster-plus package, then run the qtp-newmodel
command. That will do an upgrade in place, and preserve all of your email
and settings.

 BTW where did Ringo come from ?? 

I can hardly believe you had to ask.
http://en.wikipedia.org/wiki/Ringo_Starr
;)

 Ta
 
 Rich
 

-- 
-Eric 'shubes'

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



Re: [qmailtoaster] Weird stuff happening on admin-toaster page

2008-02-26 Thread Eric Shubes
Just that one package will do the trick. qtp-newmodel is one of a handful of
handy commands that the qmailtoaster-plus package contains. The qtp-newmodel
command will download everything else you need for the upgrade.

Richard Starkie wrote:
 ok then ... so do I just install -plus package or more than just that one
 ... sorry for being dense 
 
 Re Ringo : I don't need to ask Eric  it just so happens to be the name
 everyone that knows me refers to me by  even the wife !  lol 
 
 Ringo :)
 
 -Original Message-
 From: Eric Shubes [mailto:[EMAIL PROTECTED] 
 Sent: 26 February 2008 21:01
 To: qmailtoaster-list@qmailtoaster.com
 Subject: Re: [qmailtoaster] Weird stuff happening on admin-toaster page
 
 Richard Starkie wrote:
 Thanks Eric

 is there a command in the toaster version i have by default that will
 perform the upgrade of do I need to start as if it is a new install
 and do it over the top?
 
 You need to install the qmailtoaster-plus package, then run the qtp-newmodel
 command. That will do an upgrade in place, and preserve all of your email
 and settings.
 
 BTW where did Ringo come from ?? 
 
 I can hardly believe you had to ask.
 http://en.wikipedia.org/wiki/Ringo_Starr
 ;)
 
 Ta

 Rich

 


-- 
-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] Weird stuff happening on admin-toaster page

2008-02-26 Thread Richard Starkie
Fingers crossed and here we go

-Original Message-
From: Eric Shubes [mailto:[EMAIL PROTECTED] 
Sent: 26 February 2008 21:23
To: qmailtoaster-list@qmailtoaster.com
Subject: Re: [qmailtoaster] Weird stuff happening on admin-toaster page

Just that one package will do the trick. qtp-newmodel is one of a handful of
handy commands that the qmailtoaster-plus package contains. The qtp-newmodel
command will download everything else you need for the upgrade.

Richard Starkie wrote:
 ok then ... so do I just install -plus package or more than just that one
 ... sorry for being dense 
 
 Re Ringo : I don't need to ask Eric  it just so happens to be the name
 everyone that knows me refers to me by  even the wife !  lol 
 
 Ringo :)
 
 -Original Message-
 From: Eric Shubes [mailto:[EMAIL PROTECTED] 
 Sent: 26 February 2008 21:01
 To: qmailtoaster-list@qmailtoaster.com
 Subject: Re: [qmailtoaster] Weird stuff happening on admin-toaster page
 
 Richard Starkie wrote:
 Thanks Eric

 is there a command in the toaster version i have by default that will
 perform the upgrade of do I need to start as if it is a new install
 and do it over the top?
 
 You need to install the qmailtoaster-plus package, then run the
qtp-newmodel
 command. That will do an upgrade in place, and preserve all of your email
 and settings.
 
 BTW where did Ringo come from ?? 
 
 I can hardly believe you had to ask.
 http://en.wikipedia.org/wiki/Ringo_Starr
 ;)
 
 Ta

 Rich

 


-- 
-Eric 'shubes'

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



RE: [qmailtoaster] Weird stuff happening on admin-toaster page

2008-02-26 Thread Richard Starkie
It bombed out  something about kernel needing updates ... am going to
have to do a yum update * -y by the looks of it and leave it overnight

:(

-Original Message-
From: Richard Starkie [mailto:[EMAIL PROTECTED] 
Sent: 26 February 2008 21:31
To: qmailtoaster-list@qmailtoaster.com
Subject: RE: [qmailtoaster] Weird stuff happening on admin-toaster page

Fingers crossed and here we go

-Original Message-
From: Eric Shubes [mailto:[EMAIL PROTECTED] 
Sent: 26 February 2008 21:23
To: qmailtoaster-list@qmailtoaster.com
Subject: Re: [qmailtoaster] Weird stuff happening on admin-toaster page

Just that one package will do the trick. qtp-newmodel is one of a handful of
handy commands that the qmailtoaster-plus package contains. The qtp-newmodel
command will download everything else you need for the upgrade.

Richard Starkie wrote:
 ok then ... so do I just install -plus package or more than just that one
 ... sorry for being dense 
 
 Re Ringo : I don't need to ask Eric  it just so happens to be the name
 everyone that knows me refers to me by  even the wife !  lol 
 
 Ringo :)
 
 -Original Message-
 From: Eric Shubes [mailto:[EMAIL PROTECTED] 
 Sent: 26 February 2008 21:01
 To: qmailtoaster-list@qmailtoaster.com
 Subject: Re: [qmailtoaster] Weird stuff happening on admin-toaster page
 
 Richard Starkie wrote:
 Thanks Eric

 is there a command in the toaster version i have by default that will
 perform the upgrade of do I need to start as if it is a new install
 and do it over the top?
 
 You need to install the qmailtoaster-plus package, then run the
qtp-newmodel
 command. That will do an upgrade in place, and preserve all of your email
 and settings.
 
 BTW where did Ringo come from ?? 
 
 I can hardly believe you had to ask.
 http://en.wikipedia.org/wiki/Ringo_Starr
 ;)
 
 Ta

 Rich

 


-- 
-Eric 'shubes'

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



Re: [qmailtoaster] Weird stuff happening on admin-toaster page

2008-02-26 Thread Eric Shubes
That's a good thing. ;)

Richard Starkie wrote:
 It bombed out  something about kernel needing updates ... am going to
 have to do a yum update * -y by the looks of it and leave it overnight
 
 :(
 
 -Original Message-
 From: Richard Starkie [mailto:[EMAIL PROTECTED] 
 Sent: 26 February 2008 21:31
 To: qmailtoaster-list@qmailtoaster.com
 Subject: RE: [qmailtoaster] Weird stuff happening on admin-toaster page
 
 Fingers crossed and here we go
 
 -Original Message-
 From: Eric Shubes [mailto:[EMAIL PROTECTED] 
 Sent: 26 February 2008 21:23
 To: qmailtoaster-list@qmailtoaster.com
 Subject: Re: [qmailtoaster] Weird stuff happening on admin-toaster page
 
 Just that one package will do the trick. qtp-newmodel is one of a handful of
 handy commands that the qmailtoaster-plus package contains. The qtp-newmodel
 command will download everything else you need for the upgrade.
 
 Richard Starkie wrote:
 ok then ... so do I just install -plus package or more than just that one
 ... sorry for being dense 

 Re Ringo : I don't need to ask Eric  it just so happens to be the name
 everyone that knows me refers to me by  even the wife !  lol 

 Ringo :)

 -Original Message-
 From: Eric Shubes [mailto:[EMAIL PROTECTED] 
 Sent: 26 February 2008 21:01
 To: qmailtoaster-list@qmailtoaster.com
 Subject: Re: [qmailtoaster] Weird stuff happening on admin-toaster page

 Richard Starkie wrote:
 Thanks Eric

 is there a command in the toaster version i have by default that will
 perform the upgrade of do I need to start as if it is a new install
 and do it over the top?
 You need to install the qmailtoaster-plus package, then run the
 qtp-newmodel
 command. That will do an upgrade in place, and preserve all of your email
 and settings.

 BTW where did Ringo come from ?? 
 I can hardly believe you had to ask.
 http://en.wikipedia.org/wiki/Ringo_Starr
 ;)

 Ta

 Rich

 
 


-- 
-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] qtp-newmodel and Centos 4

2008-02-26 Thread Mattias
I tried creating the /var/spool/authdaemon in the sandbox as it was 
existing in my own setup.

This took me a bit further:

Copying files from qmail-pop3d-toaster-1.03-1.3.15 to the linked sandbox ...
Copying files from simscan-toaster-1.3.1-1.3.6 to the linked sandbox ...
Copying files from squirrelmail-toaster-1.4.9a-1.3.6 to the linked 
sandbox ...
cp: cannot create regular file 
`/mnt/qtp-sandbox/etc/cron.daily/squirrelmail.cro
n': No such file or directory

Copying files from clamav-toaster-0.91.2-1.3.15 to the linked sandbox ...
unexpected: /usr/share/clamav/daily.cvd in package 
clamav-toaster-0.91.2-1.3.15 does not exist

Continuing ...
unexpected: /usr/share/clamav/main.cvd in package 
clamav-toaster-0.91.2-1.3.15 does not exist

Continuing ...
Copying files from qmailtoaster-plus-0.3.0-1.4.0 to the linked sandbox ...
Copying files from vpopmail-toaster-5.4.17-1.3.4 to the linked sandbox ...
Directory /mnt/qtp-sandbox/home/vpopmail/domains does not exist - script 
error

Exiting.


But not all the way...
Please help.


Lucian Cristian wrote:

Or you could add /var/spool/authdaemon
In qtp-build-sandbox at line 326 if you ar using the older version.

I tried to make the sandbox smaller maybe I forgot something

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



Re: [qmailtoaster] qtp-newmodel and Centos 4

2008-02-26 Thread Lucian Cristian

Mattias wrote:
I tried creating the /var/spool/authdaemon in the sandbox as it was 
existing in my own setup.

This took me a bit further:

Copying files from qmail-pop3d-toaster-1.03-1.3.15 to the linked 
sandbox ...

Copying files from simscan-toaster-1.3.1-1.3.6 to the linked sandbox ...
Copying files from squirrelmail-toaster-1.4.9a-1.3.6 to the linked 
sandbox ...
cp: cannot create regular file 
`/mnt/qtp-sandbox/etc/cron.daily/squirrelmail.cro
n': No such file or directory

Copying files from clamav-toaster-0.91.2-1.3.15 to the linked sandbox ...
unexpected: /usr/share/clamav/daily.cvd in package 
clamav-toaster-0.91.2-1.3.15 does not exist

Continuing ...
unexpected: /usr/share/clamav/main.cvd in package 
clamav-toaster-0.91.2-1.3.15 does not exist

Continuing ...
Copying files from qmailtoaster-plus-0.3.0-1.4.0 to the linked sandbox 
...
Copying files from vpopmail-toaster-5.4.17-1.3.4 to the linked sandbox 
...
Directory /mnt/qtp-sandbox/home/vpopmail/domains does not exist - 
script error

Exiting.


But not all the way...
Please help.


Lucian Cristian wrote:

Or you could add /var/spool/authdaemon
In qtp-build-sandbox at line 326 if you ar using the older version.

I tried to make the sandbox smaller maybe I forgot something

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

something is not ok, vpopmail/domains dir should not be needed to build 
your updates.

what is your version of qtp-build-sandbox ?

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



RE: [qmailtoaster] Weird stuff happening on admin-toaster page

2008-02-26 Thread Richard Starkie
Update almost finished - only 100 packages lol, 

Am running CentOS 5 - should i be expecting any problems re sandbox - just
so i'm prepared ??

-Original Message-
From: Eric Shubes [mailto:[EMAIL PROTECTED] 
Sent: 26 February 2008 21:58
To: qmailtoaster-list@qmailtoaster.com
Subject: Re: [qmailtoaster] Weird stuff happening on admin-toaster page

That's a good thing. ;)

Richard Starkie wrote:
 It bombed out  something about kernel needing updates ... am going to
 have to do a yum update * -y by the looks of it and leave it overnight
 
 :(
 
 -Original Message-
 From: Richard Starkie [mailto:[EMAIL PROTECTED] 
 Sent: 26 February 2008 21:31
 To: qmailtoaster-list@qmailtoaster.com
 Subject: RE: [qmailtoaster] Weird stuff happening on admin-toaster page
 
 Fingers crossed and here we go
 
 -Original Message-
 From: Eric Shubes [mailto:[EMAIL PROTECTED] 
 Sent: 26 February 2008 21:23
 To: qmailtoaster-list@qmailtoaster.com
 Subject: Re: [qmailtoaster] Weird stuff happening on admin-toaster page
 
 Just that one package will do the trick. qtp-newmodel is one of a handful
of
 handy commands that the qmailtoaster-plus package contains. The
qtp-newmodel
 command will download everything else you need for the upgrade.
 
 Richard Starkie wrote:
 ok then ... so do I just install -plus package or more than just that one
 ... sorry for being dense 

 Re Ringo : I don't need to ask Eric  it just so happens to be the
name
 everyone that knows me refers to me by  even the wife !  lol 

 Ringo :)

 -Original Message-
 From: Eric Shubes [mailto:[EMAIL PROTECTED] 
 Sent: 26 February 2008 21:01
 To: qmailtoaster-list@qmailtoaster.com
 Subject: Re: [qmailtoaster] Weird stuff happening on admin-toaster page

 Richard Starkie wrote:
 Thanks Eric

 is there a command in the toaster version i have by default that will
 perform the upgrade of do I need to start as if it is a new install
 and do it over the top?
 You need to install the qmailtoaster-plus package, then run the
 qtp-newmodel
 command. That will do an upgrade in place, and preserve all of your email
 and settings.

 BTW where did Ringo come from ?? 
 I can hardly believe you had to ask.
 http://en.wikipedia.org/wiki/Ringo_Starr
 ;)

 Ta

 Rich

 
 


-- 
-Eric 'shubes'

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



Re: [qmailtoaster] Weird stuff happening on admin-toaster page

2008-02-26 Thread Eric Shubes
Always *expect* problems. (jk)

I'm not positive of the status of unionfs on COS5. Justice (the person)
might know better. If the unionfs is problematic, you can always use a
linked or copied sandbox.

You'll probably be needing some perl dependencies for the newest
spamassassin too. We don't have a really slick (read automated) way of
handling that yet.

Rest assurred that whatever you might come across, you're probably not the
first one. ;)

Richard Starkie wrote:
 Update almost finished - only 100 packages lol, 
 
 Am running CentOS 5 - should i be expecting any problems re sandbox - just
 so i'm prepared ??
 
 -Original Message-
 From: Eric Shubes [mailto:[EMAIL PROTECTED] 
 Sent: 26 February 2008 21:58
 To: qmailtoaster-list@qmailtoaster.com
 Subject: Re: [qmailtoaster] Weird stuff happening on admin-toaster page
 
 That's a good thing. ;)
 
 Richard Starkie wrote:
 It bombed out  something about kernel needing updates ... am going to
 have to do a yum update * -y by the looks of it and leave it overnight

 :(

 -Original Message-
 From: Richard Starkie [mailto:[EMAIL PROTECTED] 
 Sent: 26 February 2008 21:31
 To: qmailtoaster-list@qmailtoaster.com
 Subject: RE: [qmailtoaster] Weird stuff happening on admin-toaster page

 Fingers crossed and here we go

 -Original Message-
 From: Eric Shubes [mailto:[EMAIL PROTECTED] 
 Sent: 26 February 2008 21:23
 To: qmailtoaster-list@qmailtoaster.com
 Subject: Re: [qmailtoaster] Weird stuff happening on admin-toaster page

 Just that one package will do the trick. qtp-newmodel is one of a handful
 of
 handy commands that the qmailtoaster-plus package contains. The
 qtp-newmodel
 command will download everything else you need for the upgrade.

 Richard Starkie wrote:
 ok then ... so do I just install -plus package or more than just that one
 ... sorry for being dense 

 Re Ringo : I don't need to ask Eric  it just so happens to be the
 name
 everyone that knows me refers to me by  even the wife !  lol 

 Ringo :)

 -Original Message-
 From: Eric Shubes [mailto:[EMAIL PROTECTED] 
 Sent: 26 February 2008 21:01
 To: qmailtoaster-list@qmailtoaster.com
 Subject: Re: [qmailtoaster] Weird stuff happening on admin-toaster page

 Richard Starkie wrote:
 Thanks Eric

 is there a command in the toaster version i have by default that will
 perform the upgrade of do I need to start as if it is a new install
 and do it over the top?
 You need to install the qmailtoaster-plus package, then run the
 qtp-newmodel
 command. That will do an upgrade in place, and preserve all of your email
 and settings.

 BTW where did Ringo come from ?? 
 I can hardly believe you had to ask.
 http://en.wikipedia.org/wiki/Ringo_Starr
 ;)

 Ta

 Rich


 
 


-- 
-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] Weird stuff happening on admin-toaster page

2008-02-26 Thread Richard Starkie
Hmmm, only spamassasin, squirrelmail and clamav are to be updated ... so it
says all the rest are the current versions . 

I guess i will have the problem with the web interface

Ringo

-Original Message-
From: Eric Shubes [mailto:[EMAIL PROTECTED] 
Sent: 26 February 2008 23:23
To: qmailtoaster-list@qmailtoaster.com
Subject: Re: [qmailtoaster] Weird stuff happening on admin-toaster page

Always *expect* problems. (jk)

I'm not positive of the status of unionfs on COS5. Justice (the person)
might know better. If the unionfs is problematic, you can always use a
linked or copied sandbox.

You'll probably be needing some perl dependencies for the newest
spamassassin too. We don't have a really slick (read automated) way of
handling that yet.

Rest assurred that whatever you might come across, you're probably not the
first one. ;)

Richard Starkie wrote:
 Update almost finished - only 100 packages lol, 
 
 Am running CentOS 5 - should i be expecting any problems re sandbox - just
 so i'm prepared ??
 
 -Original Message-
 From: Eric Shubes [mailto:[EMAIL PROTECTED] 
 Sent: 26 February 2008 21:58
 To: qmailtoaster-list@qmailtoaster.com
 Subject: Re: [qmailtoaster] Weird stuff happening on admin-toaster page
 
 That's a good thing. ;)
 
 Richard Starkie wrote:
 It bombed out  something about kernel needing updates ... am going to
 have to do a yum update * -y by the looks of it and leave it overnight

 :(

 -Original Message-
 From: Richard Starkie [mailto:[EMAIL PROTECTED] 
 Sent: 26 February 2008 21:31
 To: qmailtoaster-list@qmailtoaster.com
 Subject: RE: [qmailtoaster] Weird stuff happening on admin-toaster page

 Fingers crossed and here we go

 -Original Message-
 From: Eric Shubes [mailto:[EMAIL PROTECTED] 
 Sent: 26 February 2008 21:23
 To: qmailtoaster-list@qmailtoaster.com
 Subject: Re: [qmailtoaster] Weird stuff happening on admin-toaster page

 Just that one package will do the trick. qtp-newmodel is one of a handful
 of
 handy commands that the qmailtoaster-plus package contains. The
 qtp-newmodel
 command will download everything else you need for the upgrade.

 Richard Starkie wrote:
 ok then ... so do I just install -plus package or more than just that
one
 ... sorry for being dense 

 Re Ringo : I don't need to ask Eric  it just so happens to be the
 name
 everyone that knows me refers to me by  even the wife !  lol 

 Ringo :)

 -Original Message-
 From: Eric Shubes [mailto:[EMAIL PROTECTED] 
 Sent: 26 February 2008 21:01
 To: qmailtoaster-list@qmailtoaster.com
 Subject: Re: [qmailtoaster] Weird stuff happening on admin-toaster page

 Richard Starkie wrote:
 Thanks Eric

 is there a command in the toaster version i have by default that will
 perform the upgrade of do I need to start as if it is a new install
 and do it over the top?
 You need to install the qmailtoaster-plus package, then run the
 qtp-newmodel
 command. That will do an upgrade in place, and preserve all of your
email
 and settings.

 BTW where did Ringo come from ?? 
 I can hardly believe you had to ask.
 http://en.wikipedia.org/wiki/Ringo_Starr
 ;)

 Ta

 Rich


 
 


-- 
-Eric 'shubes'

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



RE: [qmailtoaster] Weird stuff happening on admin-toaster page

2008-02-26 Thread Richard Starkie
Upgrade apparently complete - no change :(

-Original Message-
From: Richard Starkie [mailto:[EMAIL PROTECTED] 
Sent: 26 February 2008 23:33
To: qmailtoaster-list@qmailtoaster.com
Subject: RE: [qmailtoaster] Weird stuff happening on admin-toaster page

Hmmm, only spamassasin, squirrelmail and clamav are to be updated ... so it
says all the rest are the current versions . 

I guess i will have the problem with the web interface

Ringo

-Original Message-
From: Eric Shubes [mailto:[EMAIL PROTECTED] 
Sent: 26 February 2008 23:23
To: qmailtoaster-list@qmailtoaster.com
Subject: Re: [qmailtoaster] Weird stuff happening on admin-toaster page

Always *expect* problems. (jk)

I'm not positive of the status of unionfs on COS5. Justice (the person)
might know better. If the unionfs is problematic, you can always use a
linked or copied sandbox.

You'll probably be needing some perl dependencies for the newest
spamassassin too. We don't have a really slick (read automated) way of
handling that yet.

Rest assurred that whatever you might come across, you're probably not the
first one. ;)

Richard Starkie wrote:
 Update almost finished - only 100 packages lol, 
 
 Am running CentOS 5 - should i be expecting any problems re sandbox - just
 so i'm prepared ??
 
 -Original Message-
 From: Eric Shubes [mailto:[EMAIL PROTECTED] 
 Sent: 26 February 2008 21:58
 To: qmailtoaster-list@qmailtoaster.com
 Subject: Re: [qmailtoaster] Weird stuff happening on admin-toaster page
 
 That's a good thing. ;)
 
 Richard Starkie wrote:
 It bombed out  something about kernel needing updates ... am going to
 have to do a yum update * -y by the looks of it and leave it overnight

 :(

 -Original Message-
 From: Richard Starkie [mailto:[EMAIL PROTECTED] 
 Sent: 26 February 2008 21:31
 To: qmailtoaster-list@qmailtoaster.com
 Subject: RE: [qmailtoaster] Weird stuff happening on admin-toaster page

 Fingers crossed and here we go

 -Original Message-
 From: Eric Shubes [mailto:[EMAIL PROTECTED] 
 Sent: 26 February 2008 21:23
 To: qmailtoaster-list@qmailtoaster.com
 Subject: Re: [qmailtoaster] Weird stuff happening on admin-toaster page

 Just that one package will do the trick. qtp-newmodel is one of a handful
 of
 handy commands that the qmailtoaster-plus package contains. The
 qtp-newmodel
 command will download everything else you need for the upgrade.

 Richard Starkie wrote:
 ok then ... so do I just install -plus package or more than just that
one
 ... sorry for being dense 

 Re Ringo : I don't need to ask Eric  it just so happens to be the
 name
 everyone that knows me refers to me by  even the wife !  lol 

 Ringo :)

 -Original Message-
 From: Eric Shubes [mailto:[EMAIL PROTECTED] 
 Sent: 26 February 2008 21:01
 To: qmailtoaster-list@qmailtoaster.com
 Subject: Re: [qmailtoaster] Weird stuff happening on admin-toaster page

 Richard Starkie wrote:
 Thanks Eric

 is there a command in the toaster version i have by default that will
 perform the upgrade of do I need to start as if it is a new install
 and do it over the top?
 You need to install the qmailtoaster-plus package, then run the
 qtp-newmodel
 command. That will do an upgrade in place, and preserve all of your
email
 and settings.

 BTW where did Ringo come from ?? 
 I can hardly believe you had to ask.
 http://en.wikipedia.org/wiki/Ringo_Starr
 ;)

 Ta

 Rich


 
 


-- 
-Eric 'shubes'

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



RE: [qmailtoaster] Newmodel error

2008-02-26 Thread Phil Leinhauser
OK Eric, I tried again.  I made the change you mentioned.

First time it balked at seeing the remnants of the old sandbox so I deleted
it and tried again.

Next time it told me I could use unionfs then I saw PIZZA again!!  But alas,
I got the following error:

Chroot: cannot run command 'qtp-build-rpms': No such file or directory

Build failed, Exiting

So no pizza for me tonight.  I'm just glad I don't have to do more coffee,
I've had enough from last night to be up for a week!

Phil

-Original Message-
From: Eric Shubes [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, February 26, 2008 10:41 AM
To: qmailtoaster-list@qmailtoaster.com
Subject: Re: [qmailtoaster] Newmodel error

Hey Phil,

I've got a fix I'd like you to try. (Justice had this right but I managed to
screw it up somehow).

In /opt/qmailtoaster-plus/bin/qtp-config, at/near line 131 change
kernelver=${kernelrelease%-[^-]*}
to
kernelver=$(expr $kernelrelease : \(^[0-9]*\+\.[0-9]*\+\.[0-9]*\))

Then rerun qtp-newmodel, which should give you the option of using the
unionfs.

Let me know that it works and I'll be sure to commit it to svn so it gets
into the next release.

Phil Leinhauser wrote:
 OK, Eric, here's what I have:
 
 [EMAIL PROTECTED] ~]# uname -r
 2.6.22.14-72.fc6
 
 [EMAIL PROTECTED] ~]# . qtp-config -s
 [EMAIL PROTECTED] ~]# . qtp-config
 qtp-config v0.2.4
 QMT_WEB=http://www.qmailtoaster.org
 QMT_DEV=http://www.qmailtoaster.org
 SANDBOX=/mnt/qtp-sandbox
 UNIONROOT=/opt/qtp-unionroot
 UPGRADE_DIR=/usr/src/qtp-upgrade
 RPMBUILD_OPTIONS=
 backupdest=/backup/qmailbkup
 useftp=n
 ftpserver=ftp://
 emailinfo=y
 email=postmaster
 removeprevious=n
 
 The -s switch didn't get anything.
 
  x02_kernel_unionfs_switch  -- didn't give anything.
 
 I didn't rerun newmodel.  I'll do that tomorrow.  It's too late now.
 
 Thanks for the help.
 
 Phil
 

-- 
-Eric 'shubes'

-
 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] qtp website and repos down?

2008-02-26 Thread Richard Starkie
Hi

 

Has the QTP repo and website gone down? I cant get on !

 

Ringo



RE: [qmailtoaster] qtp website and repos down?

2008-02-26 Thread Phil Leinhauser
Looks like it.  I just had the same problem.

 

  _  

From: Richard Starkie [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, February 26, 2008 9:12 PM
To: qmailtoaster-list@qmailtoaster.com
Subject: [qmailtoaster] qtp website and repos down?
Importance: High

 

Hi

 

Has the QTP repo and website gone down? I cant get on !

 

Ringo



RE: [qmailtoaster] qtp website and repos down?

2008-02-26 Thread Richard Starkie
It just totalled my system . was in the middle of upgrading L now i have
to rebuild the box L L L

 

 

From: Phil Leinhauser [mailto:[EMAIL PROTECTED] 
Sent: 27 February 2008 02:15
To: qmailtoaster-list@qmailtoaster.com
Subject: RE: [qmailtoaster] qtp website and repos down?

 

Looks like it.  I just had the same problem.

 

  _  

From: Richard Starkie [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, February 26, 2008 9:12 PM
To: qmailtoaster-list@qmailtoaster.com
Subject: [qmailtoaster] qtp website and repos down?
Importance: High

 

Hi

 

Has the QTP repo and website gone down? I cant get on !

 

Ringo



RE: [qmailtoaster] qtp website and repos down?

2008-02-26 Thread Phil Leinhauser
Actually, the whole qtp.qmailtoaster.com site seems to be struggling.  

 

  _  

From: Richard Starkie [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, February 26, 2008 9:12 PM
To: qmailtoaster-list@qmailtoaster.com
Subject: [qmailtoaster] qtp website and repos down?
Importance: High

 

Hi

 

Has the QTP repo and website gone down? I cant get on !

 

Ringo



RE: [qmailtoaster] qtp website and repos down?

2008-02-26 Thread Phil Leinhauser
It shouldn't have done any damage.  That's why the sandbox does what it
does.  The upgrade pieces don't roll into production until the updates exit
clean.  Double check before you go rebuilding anything.  Also, you should
have done a qtp-backup before doing any updates hopefully.

 

Phil

 

  _  

From: Richard Starkie [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, February 26, 2008 9:17 PM
To: qmailtoaster-list@qmailtoaster.com
Subject: RE: [qmailtoaster] qtp website and repos down?

 

It just totalled my system . was in the middle of upgrading :-( now i
have to rebuild the box :-( :-( :-(

 

 

From: Phil Leinhauser [mailto:[EMAIL PROTECTED] 
Sent: 27 February 2008 02:15
To: qmailtoaster-list@qmailtoaster.com
Subject: RE: [qmailtoaster] qtp website and repos down?

 

Looks like it.  I just had the same problem.

 

  _  

From: Richard Starkie [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, February 26, 2008 9:12 PM
To: qmailtoaster-list@qmailtoaster.com
Subject: [qmailtoaster] qtp website and repos down?
Importance: High

 

Hi

 

Has the QTP repo and website gone down? I cant get on !

 

Ringo



RE: [qmailtoaster] qtp website and repos down?

2008-02-26 Thread Richard Starkie
Didn't bother with the backup, downloaded all messages tho to thunderbird /
outlook so messages aren't lost  just signatures (on each account) and
any address books (shouldn't have been any though)

 

I cant get on any of the websites on the box, which were working before.

 

Any thoughts?

 

From: Phil Leinhauser [mailto:[EMAIL PROTECTED] 
Sent: 27 February 2008 02:21
To: qmailtoaster-list@qmailtoaster.com
Subject: RE: [qmailtoaster] qtp website and repos down?

 

It shouldn't have done any damage.  That's why the sandbox does what it
does.  The upgrade pieces don't roll into production until the updates exit
clean.  Double check before you go rebuilding anything.  Also, you should
have done a qtp-backup before doing any updates hopefully.

 

Phil

 

  _  

From: Richard Starkie [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, February 26, 2008 9:17 PM
To: qmailtoaster-list@qmailtoaster.com
Subject: RE: [qmailtoaster] qtp website and repos down?

 

It just totalled my system . was in the middle of upgrading L now i have
to rebuild the box L L L

 

 

From: Phil Leinhauser [mailto:[EMAIL PROTECTED] 
Sent: 27 February 2008 02:15
To: qmailtoaster-list@qmailtoaster.com
Subject: RE: [qmailtoaster] qtp website and repos down?

 

Looks like it.  I just had the same problem.

 

  _  

From: Richard Starkie [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, February 26, 2008 9:12 PM
To: qmailtoaster-list@qmailtoaster.com
Subject: [qmailtoaster] qtp website and repos down?
Importance: High

 

Hi

 

Has the QTP repo and website gone down? I cant get on !

 

Ringo



RE: [qmailtoaster] qtp website and repos down?

2008-02-26 Thread Phil Leinhauser
Eric or Jake must be working on the QTP site.  That's the only one I can't
get to.  I can get to www.qmailtoaster.com http://www.qmailtoaster.com/ .
I did have a flicker of the qtp site but not anymore.  

 

I just pinged it.  QTP site is on a different server than www and the QTP
server isn't returning ping.

 

Phil

 

  _  

From: Richard Starkie [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, February 26, 2008 9:25 PM
To: qmailtoaster-list@qmailtoaster.com
Subject: RE: [qmailtoaster] qtp website and repos down?

 

Didn't bother with the backup, downloaded all messages tho to thunderbird /
outlook so messages aren't lost  just signatures (on each account) and
any address books (shouldn't have been any though)

 

I cant get on any of the websites on the box, which were working before.

 

Any thoughts?

 

From: Phil Leinhauser [mailto:[EMAIL PROTECTED] 
Sent: 27 February 2008 02:21
To: qmailtoaster-list@qmailtoaster.com
Subject: RE: [qmailtoaster] qtp website and repos down?

 

It shouldn't have done any damage.  That's why the sandbox does what it
does.  The upgrade pieces don't roll into production until the updates exit
clean.  Double check before you go rebuilding anything.  Also, you should
have done a qtp-backup before doing any updates hopefully.

 

Phil

 

  _  

From: Richard Starkie [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, February 26, 2008 9:17 PM
To: qmailtoaster-list@qmailtoaster.com
Subject: RE: [qmailtoaster] qtp website and repos down?

 

It just totalled my system . was in the middle of upgrading :-( now i
have to rebuild the box :-( :-( :-(

 

 

From: Phil Leinhauser [mailto:[EMAIL PROTECTED] 
Sent: 27 February 2008 02:15
To: qmailtoaster-list@qmailtoaster.com
Subject: RE: [qmailtoaster] qtp website and repos down?

 

Looks like it.  I just had the same problem.

 

  _  

From: Richard Starkie [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, February 26, 2008 9:12 PM
To: qmailtoaster-list@qmailtoaster.com
Subject: [qmailtoaster] qtp website and repos down?
Importance: High

 

Hi

 

Has the QTP repo and website gone down? I cant get on !

 

Ringo



RE: [qmailtoaster] qtp website and repos down?

2008-02-26 Thread Richard Starkie
I cant even get to .com, .org is ok though

 

From: Phil Leinhauser [mailto:[EMAIL PROTECTED] 
Sent: 27 February 2008 02:32
To: qmailtoaster-list@qmailtoaster.com
Subject: RE: [qmailtoaster] qtp website and repos down?

 

Eric or Jake must be working on the QTP site.  That's the only one I can't
get to.  I can get to www.qmailtoaster.com http://www.qmailtoaster.com/ .
I did have a flicker of the qtp site but not anymore.  

 

I just pinged it.  QTP site is on a different server than www and the QTP
server isn't returning ping.

 

Phil

 

  _  

From: Richard Starkie [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, February 26, 2008 9:25 PM
To: qmailtoaster-list@qmailtoaster.com
Subject: RE: [qmailtoaster] qtp website and repos down?

 

Didn't bother with the backup, downloaded all messages tho to thunderbird /
outlook so messages aren't lost  just signatures (on each account) and
any address books (shouldn't have been any though)

 

I cant get on any of the websites on the box, which were working before.

 

Any thoughts?

 

From: Phil Leinhauser [mailto:[EMAIL PROTECTED] 
Sent: 27 February 2008 02:21
To: qmailtoaster-list@qmailtoaster.com
Subject: RE: [qmailtoaster] qtp website and repos down?

 

It shouldn't have done any damage.  That's why the sandbox does what it
does.  The upgrade pieces don't roll into production until the updates exit
clean.  Double check before you go rebuilding anything.  Also, you should
have done a qtp-backup before doing any updates hopefully.

 

Phil

 

  _  

From: Richard Starkie [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, February 26, 2008 9:17 PM
To: qmailtoaster-list@qmailtoaster.com
Subject: RE: [qmailtoaster] qtp website and repos down?

 

It just totalled my system . was in the middle of upgrading L now i have
to rebuild the box L L L

 

 

From: Phil Leinhauser [mailto:[EMAIL PROTECTED] 
Sent: 27 February 2008 02:15
To: qmailtoaster-list@qmailtoaster.com
Subject: RE: [qmailtoaster] qtp website and repos down?

 

Looks like it.  I just had the same problem.

 

  _  

From: Richard Starkie [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, February 26, 2008 9:12 PM
To: qmailtoaster-list@qmailtoaster.com
Subject: [qmailtoaster] qtp website and repos down?
Importance: High

 

Hi

 

Has the QTP repo and website gone down? I cant get on !

 

Ringo



Re: [qmailtoaster] qtp website and repos down?

2008-02-26 Thread Jake Vickers

Richard Starkie wrote:


It just totalled my system . was in the middle of upgrading L now 
i have to rebuild the box L L L


 

 


*From:* Phil Leinhauser [mailto:[EMAIL PROTECTED]
*Sent:* 27 February 2008 02:15
*To:* qmailtoaster-list@qmailtoaster.com
*Subject:* RE: [qmailtoaster] qtp website and repos down?

 


Looks like it.  I just had the same problem.

 




*From:* Richard Starkie [mailto:[EMAIL PROTECTED]
*Sent:* Tuesday, February 26, 2008 9:12 PM
*To:* qmailtoaster-list@qmailtoaster.com
*Subject:* [qmailtoaster] qtp website and repos down?
*Importance:* High

 


Hi

 


Has the QTP repo and website gone down? I cant get on !

 


Ringo

The router at this location is down (weather problems) and will be back 
up in a few hours.
It did *NOT* total your system, since QTP doesn't work like that. The 
Toaster packages are on a completely different server, in a completely 
different state. Once you install QTP, it does not contact the QTP site 
in any way unless you are trying to update the QTP package (it will 
time-out shortly). It would be downloading the packages from 
www.qmailtoaster.org, which is nowhere near qtp.qmailtoaster.com.




RE: [qmailtoaster] Newmodel error

2008-02-26 Thread jlondon
Phil, could you please tell me the following things:
a) when you run /opt/qmailtoaster-plus/bin/qtp-mount-sandbox it should
report no errors.  Is this the case?  If there are no errors, what does:
ls -al /mnt/qtp-sandbox/opt/qmailtoaster-plus/bin | wc -l
report?  It should say 34 results.

b) If this runs okay, please include the last bit from your qtp build log
before the chroot error.

Thanks!

Justice London
[EMAIL PROTECTED]

 OK Eric, I tried again.  I made the change you mentioned.

 First time it balked at seeing the remnants of the old sandbox so I
 deleted
 it and tried again.

 Next time it told me I could use unionfs then I saw PIZZA again!!  But
 alas,
 I got the following error:

 Chroot: cannot run command 'qtp-build-rpms': No such file or directory

 Build failed, Exiting

 So no pizza for me tonight.  I'm just glad I don't have to do more coffee,
 I've had enough from last night to be up for a week!

 Phil

 -Original Message-
 From: Eric Shubes [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, February 26, 2008 10:41 AM
 To: qmailtoaster-list@qmailtoaster.com
 Subject: Re: [qmailtoaster] Newmodel error

 Hey Phil,

 I've got a fix I'd like you to try. (Justice had this right but I managed
 to
 screw it up somehow).

 In /opt/qmailtoaster-plus/bin/qtp-config, at/near line 131 change
 kernelver=${kernelrelease%-[^-]*}
 to
 kernelver=$(expr $kernelrelease : \(^[0-9]*\+\.[0-9]*\+\.[0-9]*\))

 Then rerun qtp-newmodel, which should give you the option of using the
 unionfs.

 Let me know that it works and I'll be sure to commit it to svn so it gets
 into the next release.

 Phil Leinhauser wrote:
 OK, Eric, here's what I have:

 [EMAIL PROTECTED] ~]# uname -r
 2.6.22.14-72.fc6

 [EMAIL PROTECTED] ~]# . qtp-config -s
 [EMAIL PROTECTED] ~]# . qtp-config
 qtp-config v0.2.4
 QMT_WEB=http://www.qmailtoaster.org
 QMT_DEV=http://www.qmailtoaster.org
 SANDBOX=/mnt/qtp-sandbox
 UNIONROOT=/opt/qtp-unionroot
 UPGRADE_DIR=/usr/src/qtp-upgrade
 RPMBUILD_OPTIONS=
 backupdest=/backup/qmailbkup
 useftp=n
 ftpserver=ftp://
 emailinfo=y
 email=postmaster
 removeprevious=n

 The -s switch didn't get anything.

  x02_kernel_unionfs_switch  -- didn't give anything.

 I didn't rerun newmodel.  I'll do that tomorrow.  It's too late now.

 Thanks for the help.

 Phil


 --
 -Eric 'shubes'

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