Re: [vchkpw] qmailadmin and forwards

2014-09-01 Thread Charles Sprickman
On Sep 1, 2014, at 10:38 AM, Eric Shubert  wrote:

> On 09/01/2014 01:31 AM, Laurent Bercot wrote:
>> On 01/09/2014 03:11, Eric Shubert wrote:
>>> Does anyone have any insight or recommendations for how to best use
>>> dovecot's LDA along with vpopmail and qmail? QMT already uses dovecot
>>> for imap and pop3 services. We're simply looking to take the next
>>> logical step.
>> 
>>  Not answering your question, but:
>>  I use vpopmail with dovecot too, and it works flawlessly without
>> using the dovecot LDA. What would be the benefit of using the
>> dovecot LDA since you have to go through vdelivermail anyway ?
>> It adds a step, which has a cost; to be worth it, the benefits have
>> to outweigh that cost.
>> 
> 
> The benefit is sieve, which provides server side filtering. With the use of 
> multiple (imap) mail clients (phones, tablets, etc), having the server do the 
> filtering/filing of messages makes good sense. I don't think having the 
> messages pass through vpopmail as well as deliver would impact performance 
> all that much. If that's what it takes, to me I expect it'd be worth it.

http://wiki2.dovecot.org/LDA

The other benefit is actually performance, and for a few reasons.  First, if 
Dovecot’s LDA is allowed to deliver, it can update the message indexes on 
delivery, rather than waiting for a POP or IMAP connection.  I believe this is 
incremental, so doing it on each delivery means the IMAP/POP session will be 
more responsive.  Second, I believe you would then be free to choose from any 
of the mailbox formats Dovecot supports.  Maildir is fine, but if you’re trying 
to bring your vpopmail install into the modern world and are offering multi-GB 
mailboxes and such, allowing server-side search for all those iDevices and 
such, the other mailbox formats might be a much better choice: 
http://wiki2.dovecot.org/MailboxFormat  Dovecot’s dbox format also offers the 
ability to keep older mail elsewhere, so you can have a set of fast drives for 
the first few GBs of mail, and larger, slower, cheaper storage for the 
long-term archives.

It’s probably possible to use Dovecot’s LDA somehow, but it’s going to involve 
untangling vdelivermail, which is not simple.  I do have “maildrop delivery” 
enabled on my install, and as best I can tell it is actually calling maildrop 
for the final delivery, as that’s how I am looking for spam-tagged messages and 
sending them to the spam box (using a global maildroprc as provided in the 
vpopmail distribution - see also README.maildrop).  A brave person could try 
building vpopmail with the maildrop path set to the dovecot LDA path and see 
what happens. :)

Charles

> 
> -- 
> -Eric 'shubes'
> 
> 
> 
> 


!DSPAM:5404a6fc56441990314193!



Re: [vchkpw] qmailadmin and forwards

2014-08-29 Thread Laurent Bercot

On 08/28/2014 02:26 PM, Eric Shubert wrote:

Thanks for this explanation Rick. Now knowing how this actually works, I
think I'll join you in being peeved about it. Not knowing any better, I
would have presumed that the user d-q files would have been processed
before the domain d-q files. Makes me wonder what the rationale is/was
for processing the domain files first.


 It has to do with the way vpopmail uses qmail hooks to do its job.
When you create the example.com domain, vpopmail modifies the
/var/qmail/users/assign database so that qmail-local delivers the mail
according to the instructions in ~/vpopmail/domains/example.com .
So what reads your .qmail-* files in the domain directory is not
vdelivermail, it's simply qmail-local.

 What vpopmail does is put a vdelivermail invocation in .qmail-default
in the domain directory. vdelivermail then extracts the user name,
looks it up in its vpasswd database to find the correct directory
(most of the time ~vpopmail/domains/example.com/user) and delivers the
mail according to the instructions in that directory.

 If you put a .qmail file in the domain directory, that takes precedence
over .qmail-default, then vdelivermail will be bypassed entirely. So
don't do that - let vpopmail do its black magic on the domain directory
and only use user directories to put your .qmail files into.

 There are 2 things I'm not satisfied with, but they have nothing to do
with the domain-wide .qmail files.
 The first thing is that vdelivermail duplicates most of the work of
qmail-local for parsing .qmail files. It would be much more elegant to
have vdelivermail just perform the vpopmail-specific stuff (extract user
name, check the vpasswd database, go to user directory) then exec into
qmail-local itself.
 The second thing is that vdelivermail does not make all the black
magic transparent: the .qmail files in a user directory cannot be
written exactly as if the user was a system user instead of a vpopmail
user. I have a program, vsanitize, to be called in .qmail files
in vpopmail user directories, that moves around a few environment
variables to provide such transparency.

--
 Laurent

!DSPAM:54008ad456445328810183!



Re: [vchkpw] qmailadmin and forwards

2014-08-28 Thread Tom Collins
Rick,

At issue was that qmail only processes the ".qmail-alias" files in the domain 
directory.  It then hands off to vdelivermail via the .qmail-default file in 
the domain directory.

The vdelivermail program is what parses the "user/.qmail" file for delivery 
instructions.  While that file follows the same format as other .qmail-alias 
files, I would agree that it would have been clearer to use .vpopmail as the 
filename so users would know that the qmail programs weren't responsible for 
processing it.  If we had remained true to the qmail way, shouldn't it have 
been "user/.qmail-default" and supported "user/.qmail-alias" files to handle 
email addressed to "user-al...@example.com"?

-Tom


On Aug 28, 2014, at 12:09 PM, Rick Widmer wrote:

> What I am peeved about was people on the qmail list complaining about the 
> 'strange' way that vpopmail handles .qmail files, or wanting them to be 
> renamed to .vpopmail files when the fact of the matter is that qmail only 
> hands off delivery for individual users after qmail-local can't find any 
> matching .qmail files in the domain directory. (.qmail-default)
> 
> The humorous part is that the 'strange' behavior they complain about is the 
> standard behavior of qmail and vpopmail may not be involved in the delivery 
> at all.  (Aliases and mailing lists are controlled by the .qmail files in the 
> domain directory.)


!DSPAM:53ffc37156441140448696!



Re: [vchkpw] qmailadmin and forwards

2014-08-28 Thread Rick Widmer

On 8/28/2014 7:26 AM, Eric Shubert wrote:

On 08/27/2014 11:24 PM, Rick Widmer wrote:

One thing to remember, and one of my pet peeves...

Out of all of the files in ~vpopmail/domains/example.com/ only one,
.qmail-default has anything to do with the vpopmail delivery process.

When qmail-local tries to deliver a message to the domain it looks at
all of the .qmail-* files in the domain directory, and processes the
.qmail* file that best matches the incoming address.  If no other
.qmail file matches .qmail-default is processed, which is where
vdelivermail gets control.


see:man dot-qmail


.qmail files in ~vpopmail/domains/example.com/username will be handled
by vdelivermail depending on compiler options.

Vpopmail and qmailadmin do manage the .qmail files in the domain
directory, but during the delivery process qmail does not pass control
to vpopmail unless none of the other .qmail files match.




Thanks for this explanation Rick. Now knowing how this actually works, I
think I'll join you in being peeved about it. Not knowing any better, I
would have presumed that the user d-q files would have been processed
before the domain d-q files. Makes me wonder what the rationale is/was
for processing the domain files first.



You don't know it is a user until you have verified the incoming address 
does not match any aliases or mailing lists.


Actually I consider the way it works to be an elegant design. You use 
the standard facilities in qmail to handle the domain directory, and 
only fire up vdelivermail to lookup individual users and forwards within 
the domain.  This is especially important for mailing lists because 
ezmlm and qmail are tightly coupled.


What I am peeved about was people on the qmail list complaining about 
the 'strange' way that vpopmail handles .qmail files, or wanting them to 
be renamed to .vpopmail files when the fact of the matter is that qmail 
only hands off delivery for individual users after qmail-local can't 
find any matching .qmail files in the domain directory.  (.qmail-default)


The humorous part is that the 'strange' behavior they complain about is 
the standard behavior of qmail and vpopmail may not be involved in the 
delivery at all.  (Aliases and mailing lists are controlled by the 
.qmail files in the domain directory.)


!DSPAM:53ff7e7856441903219601!



Re: [vchkpw] qmailadmin and forwards

2014-08-28 Thread Eric Shubert

On 08/27/2014 11:24 PM, Rick Widmer wrote:

One thing to remember, and one of my pet peeves...

Out of all of the files in ~vpopmail/domains/example.com/ only one, 
.qmail-default has anything to do with the vpopmail delivery process.


When qmail-local tries to deliver a message to the domain it looks at 
all of the .qmail-* files in the domain directory, and processes the 
.qmail* file that best matches the incoming address.  If no other 
.qmail file matches .qmail-default is processed, which is where 
vdelivermail gets control.



see:man dot-qmail


.qmail files in ~vpopmail/domains/example.com/username will be handled 
by vdelivermail depending on compiler options.


Vpopmail and qmailadmin do manage the .qmail files in the domain 
directory, but during the delivery process qmail does not pass control 
to vpopmail unless none of the other .qmail files match.




Thanks for this explanation Rick. Now knowing how this actually works, I 
think I'll join you in being peeved about it. Not knowing any better, I 
would have presumed that the user d-q files would have been processed 
before the domain d-q files. Makes me wonder what the rationale is/was 
for processing the domain files first.


--
-Eric 'shubes'


!DSPAM:53ff2e0956448319919131!



Re: [vchkpw] qmailadmin and forwards

2014-08-27 Thread Rick Widmer

One thing to remember, and one of my pet peeves...

Out of all of the files in ~vpopmail/domains/example.com/ only one, 
.qmail-default has anything to do with the vpopmail delivery process.


When qmail-local tries to deliver a message to the domain it looks at 
all of the .qmail-* files in the domain directory, and processes the 
.qmail* file that best matches the incoming address.  If no other .qmail 
file matches .qmail-default is processed, which is where vdelivermail 
gets control.



see:man dot-qmail


.qmail files in ~vpopmail/domains/example.com/username will be handled 
by vdelivermail depending on compiler options.


Vpopmail and qmailadmin do manage the .qmail files in the domain 
directory, but during the delivery process qmail does not pass control 
to vpopmail unless none of the other .qmail files match.


!DSPAM:53fecb3a56448570372193!



Re: [vchkpw] qmailadmin and forwards

2014-08-27 Thread Charles Sprickman

On Aug 27, 2014, at 10:00 AM, Eric Shubert  wrote:

> On 08/25/2014 05:48 PM, Charles Sprickman wrote:
>>> >I block the spam before it enters the system using simscan.
>> Thanks - not an option here since I need to allow users to opt in or out, 
>> etc.
> 
> The simcontrol file allows you to customize settings per email address. I 
> presume that this would be the initial (forward) address, since the true 
> destination wouldn't be available yet at that point.

The issue with that is we already have a bunch of stuff in webmail and internal 
web apps that deal with per-user settings and such (including some neat 
postscreen things for when I finish standing Postfix up in front of the primary 
mxer), so switching scanning is not really an option.

All alias/forward traffic seems to find its way to qmail via vdelivermail 
piping it to qmail-inject, so I put a wrapper in place of qmail-inject last 
night and that’s looking good.  It’s just a shell script, and it’s a bit hokey, 
but the volume on forwards/aliases is about 5% of our total volume.

Basically it makes a few decisions:

• Is the calling UID 89?  If not, throw the message to real qmail-inject 
immediately
• If it is UID 89, is this offsite or local final delivery?  If local, throw 
message to qmail-inject
• If it is UID 89 and offsite, pipe through spamc to temporary file, look at 
exit status of spamc. If it’s spam, discard, exit 0.  If it’s not spam, read 
the file into qmail-inject

So far so good.  It’s really hackish though.

Charles

> 
> -- 
> -Eric 'shubes'
> 
> 
> 
> 


!DSPAM:53fdfe8556446577118687!



Re: [vchkpw] qmailadmin and forwards

2014-08-26 Thread Charles Sprickman

On Aug 26, 2014, at 8:41 AM, Rick Macdougall  wrote:

> Hi,
> 
> On 2014-08-25 8:48 PM, Charles Sprickman wrote:
>> On Aug 25, 2014, at 3:04 PM, Rick Macdougall  wrote:
>> 
>>> Hi,
>>> 
>>> On 2014-08-25 2:55 PM, Charles Sprickman wrote:
 Hello all,
 
 A quick question, curious about what others are doing…
 
 We still use qmailadmin with our vpopmail setup, because it does handle 
 all the basics pretty well.  One weakness that’s giving us grief is 
 forwarding.  Since qmailadmin has no option to both pipe the mail through 
 the spam scanner and *then* forward only clean emails, we end up 
 forwarding large amounts of spam to various large mail providers.  These 
 providers may or may not view that as spam being sourced from *us*, and 
 then throttle/queue/block us.
 
 For some people that I know are never going to touch qmailadmin, I put 
 together my own maildrop config to handle this, but I don’t have a 
 solution for the more general users that might change the forwarding 
 settings.
 
 What’s everyone else doing?
 
 Thanks,
 
 Charles
>>> 
>>> I block the spam before it enters the system using simscan.
>> 
>> Thanks - not an option here since I need to allow users to opt in or out, 
>> etc.
>> 
>> I do run with the spamc and maildrop options enabled.  I know that with the 
>> spamc switch, all mail is being scanned.  I’m not totally sure where 
>> vdelivermail normally throws email to qmail-inject in the delivery path, or 
>> if the maildrop patch causes maildrop to always do final delivery.  If 
>> maildrop is the last thing in the chain, I’m wondering if I can 
>> short-circuit the existing forward mechanism and force a “toss this if spam 
>> flag is “YES”…
>> 
>> Off to try to follow vdelivermail.c…  :)
>> 
> 
> If you are running with maildrop, vdelivermail isn't being used. Maildrop is 
> doing the actual delivery to the Maildir.

To be specific, I’ve got vpopmail (5.4.33) compiled with the maildrop and 
spamassassin configure options enabled.  I put some log statements in my 
maildroprc (basically the maildroprcv2 that comes with vpopmail) and also put a 
wrapper around qmail-inject to log all args, envvars, and the parent process.

What I’ve found so far is that when per-user forwards are hit (ie: .qmail in 
user’s $VHOME contains “&some...@gmail.com”), no part of maildroprc logs show 
up, the calling process for qmail-inject is vdelivermail, and no spamassassin 
headers yet exist.  I really can’t quite follow the vdelivermail delivery 
process very well, but I’m assuming this is intentional.  There is clearly a 
code path in vdelivermail where even with spamass and maildrop enabled, neither 
of those touch the email.

My current plan, which avoids trying to patch something into vdelivermail, is 
to wrap qmail-inject and pipe offsite forwards through spamc there (discarding 
the message if spam threshold is exceeded).  From what I see so far, mail that 
ends up in the queue via qmail-inject is a very small proportion of our overall 
volume, so I’m more comfortable catching the off-site forwards there than doing 
something a bit heavier in qmail-queue (and the QMAILQUEUE patch for calling an 
alternate qmail-queue).  Very soon Postfix will be sitting in front of qmail as 
well (oh, if I could just make postfix call vdelivermail…).

Thanks,

Charles

> 
> Regards,
> 
> Rick
> 
> 
> 
> 


!DSPAM:53fc9e9956443167450835!



Re: [vchkpw] qmailadmin and forwards

2014-08-26 Thread Rick Macdougall

Hi,

On 2014-08-25 8:48 PM, Charles Sprickman wrote:

On Aug 25, 2014, at 3:04 PM, Rick Macdougall  wrote:


Hi,

On 2014-08-25 2:55 PM, Charles Sprickman wrote:

Hello all,

A quick question, curious about what others are doing…

We still use qmailadmin with our vpopmail setup, because it does handle all the 
basics pretty well.  One weakness that’s giving us grief is forwarding.  Since 
qmailadmin has no option to both pipe the mail through the spam scanner and 
*then* forward only clean emails, we end up forwarding large amounts of spam to 
various large mail providers.  These providers may or may not view that as spam 
being sourced from *us*, and then throttle/queue/block us.

For some people that I know are never going to touch qmailadmin, I put together 
my own maildrop config to handle this, but I don’t have a solution for the more 
general users that might change the forwarding settings.

What’s everyone else doing?

Thanks,

Charles


I block the spam before it enters the system using simscan.


Thanks - not an option here since I need to allow users to opt in or out, etc.

I do run with the spamc and maildrop options enabled.  I know that with the 
spamc switch, all mail is being scanned.  I’m not totally sure where 
vdelivermail normally throws email to qmail-inject in the delivery path, or if 
the maildrop patch causes maildrop to always do final delivery.  If maildrop is 
the last thing in the chain, I’m wondering if I can short-circuit the existing 
forward mechanism and force a “toss this if spam flag is “YES”…

Off to try to follow vdelivermail.c…  :)



If you are running with maildrop, vdelivermail isn't being used. 
Maildrop is doing the actual delivery to the Maildir.


Regards,

Rick


!DSPAM:53fc807156441904512991!



Re: [vchkpw] qmailadmin and forwards

2014-08-25 Thread Tom Collins
Charles,

It's been a long time since I've worked in that code, but here are some quick 
thoughts:

1) There's already code reading the headers, searching for mail loops by 
looking at the Delivered-To header.  You could tap into that code.

2) You could look at simscan.c to see how they're interfacing with spamc.

-Tom


On Aug 25, 2014, at 5:48 PM, Charles Sprickman wrote:
> Off to try to follow vdelivermail.c…  :)


!DSPAM:53fc20e356441762611622!



Re: [vchkpw] qmailadmin and forwards

2014-08-25 Thread Charles Sprickman
On Aug 25, 2014, at 3:04 PM, Rick Macdougall  wrote:

> Hi,
> 
> On 2014-08-25 2:55 PM, Charles Sprickman wrote:
>> Hello all,
>> 
>> A quick question, curious about what others are doing…
>> 
>> We still use qmailadmin with our vpopmail setup, because it does handle all 
>> the basics pretty well.  One weakness that’s giving us grief is forwarding.  
>> Since qmailadmin has no option to both pipe the mail through the spam 
>> scanner and *then* forward only clean emails, we end up forwarding large 
>> amounts of spam to various large mail providers.  These providers may or may 
>> not view that as spam being sourced from *us*, and then throttle/queue/block 
>> us.
>> 
>> For some people that I know are never going to touch qmailadmin, I put 
>> together my own maildrop config to handle this, but I don’t have a solution 
>> for the more general users that might change the forwarding settings.
>> 
>> What’s everyone else doing?
>> 
>> Thanks,
>> 
>> Charles
> 
> I block the spam before it enters the system using simscan.

Thanks - not an option here since I need to allow users to opt in or out, etc.

I do run with the spamc and maildrop options enabled.  I know that with the 
spamc switch, all mail is being scanned.  I’m not totally sure where 
vdelivermail normally throws email to qmail-inject in the delivery path, or if 
the maildrop patch causes maildrop to always do final delivery.  If maildrop is 
the last thing in the chain, I’m wondering if I can short-circuit the existing 
forward mechanism and force a “toss this if spam flag is “YES”…

Off to try to follow vdelivermail.c…  :)

Thanks,

Charles

> 
> Regards,
> 
> Rick
> 
> 
> 
> 


!DSPAM:53fbd92756441244418869!



Re: [vchkpw] qmailadmin and forwards

2014-08-25 Thread Rick Macdougall

Hi,

On 2014-08-25 2:55 PM, Charles Sprickman wrote:

Hello all,

A quick question, curious about what others are doing…

We still use qmailadmin with our vpopmail setup, because it does handle all the 
basics pretty well.  One weakness that’s giving us grief is forwarding.  Since 
qmailadmin has no option to both pipe the mail through the spam scanner and 
*then* forward only clean emails, we end up forwarding large amounts of spam to 
various large mail providers.  These providers may or may not view that as spam 
being sourced from *us*, and then throttle/queue/block us.

For some people that I know are never going to touch qmailadmin, I put together 
my own maildrop config to handle this, but I don’t have a solution for the more 
general users that might change the forwarding settings.

What’s everyone else doing?

Thanks,

Charles


I block the spam before it enters the system using simscan.

Regards,

Rick



!DSPAM:53fb88ae56447225315773!



Re: [vchkpw] qmailadmin suggestions -- SOrry if I send a Personal one

2013-02-19 Thread Remo Mattei
That did fix the problems..

Remo 


On Feb 19, 2013, at 22:47 , Tom Collins  wrote:

> Looks like a problem in vauth_getpw() from vpopmail.  I think you're on the 
> right track with going from 5.5 back down to 5.4.
> 
> I'm still running QmailAdmin 1.2.12 and Vpopmail 5.4.20.
> 
> -Tom
> 
> 
> On Feb 19, 2013, at 9:09 PM, Remo Mattei wrote:
> 
>> one more update on this
>> 
>> 
>> Program received signal SIGSEGV, Segmentation fault.
>> 0x0805d490 in vauth_getpw ()
>> (gdb) bt
>> #0  0x0805d490 in vauth_getpw ()
>> #1  0x0805785c in get_session_val (session_var=0x805c20d "returnhttp=")
>>   at template.c:872
>> #2  0x080572fd in send_template_now (filename=0x805cbdf "show_login.html")
>>   at template.c:645
>> #3  0x08055e45 in send_template (actualfile=0x805cbdf "show_login.html")
>>   at template.c:65
>> #4  0x0805938e in show_login () at show.c:33
>> #5  0x0804a42d in main (argc=, argv=> out>)
>>   at qmailadmin.c:307
>> 
>> 
>> On Feb 19, 2013, at 21:01 , Remo Mattei  wrote:
>> 
>>> Hi Tom, I have a problem with Qmailadmin for some reasons it show half 
>>> page, could you suggest something, it does not have any error on the web 
>>> but if I run it I get 
>>>  Password>> maxlength="128">
>>>  
>>>
>>> Segmentation fault
>>> 
>>> this is a centos 5.9 before installing the ezmlm I remember it was working 
>>> after compiling that it got to this stage. 
>>> 
>>> Thank you for your suggestions. 
>>> 
>>> here is the link to show the page
>>> http://mail.mattei.co/cgi-bin/qmailadmin
>>> 
>>> Remo
>>> 
>>> 
>> 
>> 
>> 
>> 
> 
> 
> 
> 


!DSPAM:51245b4934145553023304!



Re: [vchkpw] qmailadmin suggestions -- SOrry if I send a Personal one

2013-02-19 Thread Tom Collins
Looks like a problem in vauth_getpw() from vpopmail.  I think you're on the 
right track with going from 5.5 back down to 5.4.

I'm still running QmailAdmin 1.2.12 and Vpopmail 5.4.20.

-Tom


On Feb 19, 2013, at 9:09 PM, Remo Mattei wrote:

> one more update on this
> 
> 
> Program received signal SIGSEGV, Segmentation fault.
> 0x0805d490 in vauth_getpw ()
> (gdb) bt
> #0  0x0805d490 in vauth_getpw ()
> #1  0x0805785c in get_session_val (session_var=0x805c20d "returnhttp=")
>at template.c:872
> #2  0x080572fd in send_template_now (filename=0x805cbdf "show_login.html")
>at template.c:645
> #3  0x08055e45 in send_template (actualfile=0x805cbdf "show_login.html")
>at template.c:65
> #4  0x0805938e in show_login () at show.c:33
> #5  0x0804a42d in main (argc=, argv= out>)
>at qmailadmin.c:307
> 
> 
> On Feb 19, 2013, at 21:01 , Remo Mattei  wrote:
> 
>> Hi Tom, I have a problem with Qmailadmin for some reasons it show half page, 
>> could you suggest something, it does not have any error on the web but if I 
>> run it I get 
>>   Password> maxlength="128">
>>   
>> 
>> Segmentation fault
>> 
>> this is a centos 5.9 before installing the ezmlm I remember it was working 
>> after compiling that it got to this stage. 
>> 
>> Thank you for your suggestions. 
>> 
>> here is the link to show the page
>> http://mail.mattei.co/cgi-bin/qmailadmin
>> 
>> Remo
>> 
>> 
> 
> 
> 
> 


!DSPAM:5124563c34141721820306!



Re: [vchkpw] qmailadmin suggestions -- SOrry if I send a Personal one

2013-02-19 Thread Remo Mattei
one more update on this


Program received signal SIGSEGV, Segmentation fault.
0x0805d490 in vauth_getpw ()
(gdb) bt
#0  0x0805d490 in vauth_getpw ()
#1  0x0805785c in get_session_val (session_var=0x805c20d "returnhttp=")
at template.c:872
#2  0x080572fd in send_template_now (filename=0x805cbdf "show_login.html")
at template.c:645
#3  0x08055e45 in send_template (actualfile=0x805cbdf "show_login.html")
at template.c:65
#4  0x0805938e in show_login () at show.c:33
#5  0x0804a42d in main (argc=, argv=)
at qmailadmin.c:307


On Feb 19, 2013, at 21:01 , Remo Mattei  wrote:

> Hi Tom, I have a problem with Qmailadmin for some reasons it show half page, 
> could you suggest something, it does not have any error on the web but if I 
> run it I get 
>Password maxlength="128">
>
>  
> Segmentation fault
> 
> this is a centos 5.9 before installing the ezmlm I remember it was working 
> after compiling that it got to this stage. 
> 
> Thank you for your suggestions. 
> 
> here is the link to show the page
> http://mail.mattei.co/cgi-bin/qmailadmin
> 
> Remo
> 
> 


!DSPAM:51243f1b34141009883228!



Re: [vchkpw] Qmailadmin -- on a Remote Machine

2013-02-19 Thread Todor Petkov

On 19/02/2013 07:01 PM, Camille Ollié wrote:

Le 19/02/2013 15:50, Remo Mattei a écrit :
Thanks this is what I thought. Do u guys have an alternative to 
qmailadmin?




There is no way to use qmail with mysql database, and a web
intertface to manage account which i using the database, as postfix
and postfixadmin works ?



You can use MySQL to manage some account info, like changing password 
for example. But for creating/deleting users, you need access to the 
filesystem. vdelivermail does not create the virtual user Maildir, this 
is done by 'vadduser' or the qmailadmin cgi binary.


I have used postfix only in iredmail suite, but there the web interface 
only inserts the domain/user record in the database. The other processes 
(postfix delivery and imap/pop3 logins via dovecot) create the homedir. 
If you delete user/domain, it does delete from the DB, but does not 
touch the filesystem.




!DSPAM:5123a03b34142647110086!



Re: [vchkpw] Qmailadmin -- on a Remote Machine

2013-02-19 Thread Chris Stone
you can use vpopmail with mysql on top of your qmail installation. Then
it'd be pretty easy to create some web pages to manage the data in the
database...


Chris


On Tue, Feb 19, 2013 at 10:01 AM, Camille Ollié  wrote:

> Le 19/02/2013 15:50, Remo Mattei a écrit :
>
>> Thanks this is what I thought. Do u guys have an alternative to
>> qmailadmin?
>>
>>
> There is no way to use qmail with mysql database, and a web intertface to
> manage account which i using the database, as postfix and postfixadmin
> works ?
>
> --
> Camille Ollié
>
> www.forum-pc.net / www.scoot-boost.com / www.photoscratch.fr
>
> LinkedIn : http://lnkd.in/_K65k5
>
> 
>
>


-- 
Chris Stone
AxisInternet, Inc.
www.axint.net


!DSPAM:51239db134141851319993!


Re: [vchkpw] Qmailadmin -- on a Remote Machine

2013-02-19 Thread Camille Ollié

Le 19/02/2013 15:50, Remo Mattei a écrit :

Thanks this is what I thought. Do u guys have an alternative to qmailadmin?



There is no way to use qmail with mysql database, and a web intertface 
to manage account which i using the database, as postfix and 
postfixadmin works ?


--
Camille Ollié

www.forum-pc.net / www.scoot-boost.com / www.photoscratch.fr

LinkedIn : http://lnkd.in/_K65k5

!DSPAM:5123949134141977512602!



Re: [vchkpw] Qmailadmin -- on a Remote Machine

2013-02-19 Thread Remo Mattei
Thanks this is what I thought. Do u guys have an alternative to qmailadmin? 

Inviato da iPhone ()


Il giorno 19/feb/2013, alle ore 06:05, Rick Romero  ha 
scritto:

> 
> Using an NFS mount works just fine, but is really only practical if you're 
> going to have the same machine handle email as well - not just web.  
> Assuming, like Thibault said, you want to open up your entire userbase to a 
> web vulnerability.
> 
> If qmailadmin were re-written to use vpopmaild, I think it might be a good 
> move.
> 
> Rick
> 
> Quoting Thibault Richard :
> 
>> Hello,
>> 
>> I think the only way is to make a NFS mount (but it's a really bad idea to 
>> implement it in production)
>> 
>> Best Regards
>> 
>> Thibault
>> -Original Message-
>> From: Todor Petkov [mailto:z...@online.bg]
>> Sent: mardi 19 février 2013 09:17
>> To: vchkpw@inter7.com
>> Subject: Re: [vchkpw] Qmailadmin -- on a Remote Machine
>> 
>> On 18/02/2013 11:37 PM, Remo Mattei wrote:
>>> Hello everyone,
>>> I have a qmail server running and for some reasons qmailadmin does not
>>> install, I have rebuild a new qmail server and the qmailadmin works
>>> fine same version of OS pretty much same configuration but does not
>>> want to listen about having qmailadmin running. So is there a way to
>>> use the new qmail server and run the qmailadmin from there to access
>>> the production qmail server?
>>> 
>>> Thanks,
>>> Remo
>> 
>> 
>> I don't think it's possible. qmailadmin reads the local qmail files to find 
>> the virtual domains. Not to mention, that you need to access the filesystem 
>> to create/delete users directories.
>> 
>> 
>> Regards,
> 
> 
> 
> 
> 
> 

!DSPAM:512375da34141988711841!



Re: [vchkpw] Qmailadmin -- on a Remote Machine

2013-02-19 Thread Rick Romero


Using an NFS mount works just fine, but is really only practical if  
you're going to have the same machine handle email as well - not just  
web.  Assuming, like Thibault said, you want to open up your entire  
userbase to a web vulnerability.


If qmailadmin were re-written to use vpopmaild, I think it might be a  
good move.


Rick

Quoting Thibault Richard :


Hello,

I think the only way is to make a NFS mount (but it's a really bad  
idea to implement it in production)


Best Regards

Thibault
-Original Message-
From: Todor Petkov [mailto:z...@online.bg]
Sent: mardi 19 février 2013 09:17
To: vchkpw@inter7.com
Subject: Re: [vchkpw] Qmailadmin -- on a Remote Machine

On 18/02/2013 11:37 PM, Remo Mattei wrote:

Hello everyone,
I have a qmail server running and for some reasons qmailadmin does not
install, I have rebuild a new qmail server and the qmailadmin works
fine same version of OS pretty much same configuration but does not
want to listen about having qmailadmin running. So is there a way to
use the new qmail server and run the qmailadmin from there to access
the production qmail server?

Thanks,
Remo




I don't think it's possible. qmailadmin reads the local qmail files  
to find the virtual domains. Not to mention, that you need to access  
the filesystem to create/delete users directories.



Regards,











!DSPAM:51236b4934149811816381!



RE: [vchkpw] Qmailadmin -- on a Remote Machine

2013-02-19 Thread Thibault Richard
Hello,

I think the only way is to make a NFS mount (but it's a really bad idea to 
implement it in production)

Best Regards

Thibault
-Original Message-
From: Todor Petkov [mailto:z...@online.bg] 
Sent: mardi 19 février 2013 09:17
To: vchkpw@inter7.com
Subject: Re: [vchkpw] Qmailadmin -- on a Remote Machine

On 18/02/2013 11:37 PM, Remo Mattei wrote:
> Hello everyone,
> I have a qmail server running and for some reasons qmailadmin does not 
> install, I have rebuild a new qmail server and the qmailadmin works 
> fine same version of OS pretty much same configuration but does not 
> want to listen about having qmailadmin running. So is there a way to 
> use the new qmail server and run the qmailadmin from there to access 
> the production qmail server?
>
> Thanks,
> Remo
> 


I don't think it's possible. qmailadmin reads the local qmail files to find the 
virtual domains. Not to mention, that you need to access the filesystem to 
create/delete users directories.


Regards,





!DSPAM:51231c1734145071215115!



Re: [vchkpw] Qmailadmin -- on a Remote Machine

2013-02-19 Thread Todor Petkov

On 18/02/2013 11:37 PM, Remo Mattei wrote:

Hello everyone,
I have a qmail server running and for some reasons qmailadmin does
not install, I have rebuild a new qmail server and the qmailadmin
works fine same version of OS pretty much same configuration but does
not want to listen about having qmailadmin running. So is there a way
to use the new qmail server and run the qmailadmin from there to
access the production qmail server?

Thanks,
Remo




I don't think it's possible. qmailadmin reads the local qmail files to 
find the virtual domains. Not to mention, that you need to access the 
filesystem to create/delete users directories.



Regards,

!DSPAM:512319ca34141265911925!



Re: [vchkpw] qmailadmin buffer overflow

2012-10-15 Thread Bob Hutchinson
On 15/10/12 15:34, Tom Collins wrote:
> Catching up on old emails -- were you able to resolve this?  I can't recall 
> if this thread continued on the mailing list or not.

No, I haven't resolved it and I haven't done the testing either ;-( It's
been a busy month but I would like to get to the bottom of this.

> 
> -Tom
> 
> 
> On Sep 19, 2012, at 6:35 AM, Bob Hutchinson wrote:
>> On 19/09/12 11:52, Tom Collins wrote:
>>> I'm offline, with limited Internet connectivity, so apologies if someone 
>>> else has already responded. 
>>>
>>> I think you need to recompile QmailAdmin and manually install the binary. 
>>> The installation process strips debug information that would probably show 
>>> up in this dump and help isolate the problem. 
>>
>> OK, I will look into doing this at a quiet time.
>> I notice that there is a binary in the source tree which is much larger
>> and which says it's unstripped, I might just try that one first.
>>
>>
>>>
>>> -Tom
>>> (Sent from my phone; forgive my brevity)
>>>
>>> On Sep 18, 2012, at 5:45 PM, Bob Hutchinson  wrote:
>>>
 Not sure if this is the right place to post but I don't know where else.

 I am using qmailadmin in a standard shupp toaster, on a 64bit machine.
 qmailadmin-1.2.15

 I getting a WSOD after adding a new mailinglist. The mailinglist is made
 and all appears correct.

 Each line in the apache error log is prepended by something like this:
 [Tue Sep 18 14:54:30 2012] [error] [client 1.2.3.4]
 The referer is someting like this:
 http://myserver.net/cgi-bin/qmailadmin/com/addmailinglist?user=postmaster&dom=adomain.co.uk&time=1347976179
 replaced with xxx

 Here is the log snippet pruned for easier reading:

 *** buffer overflow detected ***: /usr/lib/cgi-bin/qmailadmin
 terminated, referer: xxx
 === Backtrace: =, referer: xxx
 /lib/x86_64-linux-gnu/libc.so.6(__fortify_fail+0x37)[0x7f12e3f8e007],
 referer: xxx
 /lib/x86_64-linux-gnu/libc.so.6(+0x107f00)[0x7f12e3f8cf00], referer: xxx
 /lib/x86_64-linux-gnu/libc.so.6(+0x1075eb)[0x7f12e3f8c5eb], referer: xxx
 /lib/x86_64-linux-gnu/libc.so.6(__snprintf_chk+0x78)[0x7f12e3f8c4c8],
 referer: xxx
 /usr/lib/cgi-bin/qmailadmin[0x409534], referer: xxx
 /usr/lib/cgi-bin/qmailadmin[0x4107bc], referer: xxx
 /usr/lib/cgi-bin/qmailadmin[0x402fb5], referer: xxx
 /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xed)[0x7f12e3ea676d],
 referer: xxx
 /usr/lib/cgi-bin/qmailadmin[0x403551], referer: xxx
 === Memory map: , referer: xxx
 0040-00431000 r-xp  ca:01 12699746
 /usr/lib/cgi-bin/qmailadmin, referer: xxx
 0063-00631000 r--p 0003 ca:01 12699746
 /usr/lib/cgi-bin/qmailadmin, referer: xxx
 00631000-00632000 rw-p 00031000 ca:01 12699746
 /usr/lib/cgi-bin/qmailadmin, referer: xxx
 00632000-0063d000 rw-p  00:00 0 , referer: xxx
 0078d000-007ae000 rw-p  00:00 0[heap],
 referer: xxx
 7f12e3c6f000-7f12e3c84000 r-xp  ca:01 10092763
 /lib/x86_64-linux-gnu/libgcc_s.so.1, referer: xxx
 7f12e3c84000-7f12e3e83000 ---p 00015000 ca:01 10092763
 /lib/x86_64-linux-gnu/libgcc_s.so.1, referer: xxx
 7f12e3e83000-7f12e3e84000 r--p 00014000 ca:01 10092763
 /lib/x86_64-linux-gnu/libgcc_s.so.1, referer: xxx
 7f12e3e84000-7f12e3e85000 rw-p 00015000 ca:01 10092763
 /lib/x86_64-linux-gnu/libgcc_s.so.1, referer: xxx
 7f12e3e85000-7f12e4038000 r-xp  ca:01 10092730
 /lib/x86_64-linux-gnu/libc-2.15.so, referer: xxx
 7f12e4038000-7f12e4237000 ---p 001b3000 ca:01 10092730
 /lib/x86_64-linux-gnu/libc-2.15.so, referer: xxx
 7f12e4237000-7f12e423b000 r--p 001b2000 ca:01 10092730
 /lib/x86_64-linux-gnu/libc-2.15.so, referer: xxx
 7f12e423b000-7f12e423d000 rw-p 001b6000 ca:01 10092730
 /lib/x86_64-linux-gnu/libc-2.15.so, referer: xxx
 7f12e423d000-7f12e4242000 rw-p  00:00 0 , referer: xxx
 7f12e4242000-7f12e424b000 r-xp  ca:01 10092783
 /lib/x86_64-linux-gnu/libcrypt-2.15.so, referer: xxx
 7f12e424b000-7f12e444b000 ---p 9000 ca:01 10092783
 /lib/x86_64-linux-gnu/libcrypt-2.15.so, referer: xxx
 7f12e444b000-7f12e444c000 r--p 9000 ca:01 10092783
 /lib/x86_64-linux-gnu/libcrypt-2.15.so, referer: xxx
 7f12e444c000-7f12e444d000 rw-p a000 ca:01 10092783
 /lib/x86_64-linux-gnu/libcrypt-2.15.so, referer: xxx
 7f12e444d000-7f12e447b000 rw-p  00:00 0 , referer: xxx
 7f12e447b000-7f12e449d000 r-xp  ca:01 10092751
 /lib/x86_64-linux-gnu/ld-2.15.so, referer: xxx
 7f12e4688000-7f12e468b000 rw-p  00:00 0 , referer: xxx
 7f12e4697000-7f12e469d000 rw-p  00:00 0 , referer: xxx
 7f12e469d000-7f12e469e000 r--p 00022000 ca:01 10092751
 /lib/x86_64-linux-gnu/ld-2.15.so, referer: xxx
 7f12e469e000-7f12e46a rw-p 00023000 ca:01 100927

Re: [vchkpw] qmailadmin buffer overflow

2012-10-15 Thread Tom Collins
Catching up on old emails -- were you able to resolve this?  I can't recall if 
this thread continued on the mailing list or not.

-Tom


On Sep 19, 2012, at 6:35 AM, Bob Hutchinson wrote:
> On 19/09/12 11:52, Tom Collins wrote:
>> I'm offline, with limited Internet connectivity, so apologies if someone 
>> else has already responded. 
>> 
>> I think you need to recompile QmailAdmin and manually install the binary. 
>> The installation process strips debug information that would probably show 
>> up in this dump and help isolate the problem. 
> 
> OK, I will look into doing this at a quiet time.
> I notice that there is a binary in the source tree which is much larger
> and which says it's unstripped, I might just try that one first.
> 
> 
>> 
>> -Tom
>> (Sent from my phone; forgive my brevity)
>> 
>> On Sep 18, 2012, at 5:45 PM, Bob Hutchinson  wrote:
>> 
>>> Not sure if this is the right place to post but I don't know where else.
>>> 
>>> I am using qmailadmin in a standard shupp toaster, on a 64bit machine.
>>> qmailadmin-1.2.15
>>> 
>>> I getting a WSOD after adding a new mailinglist. The mailinglist is made
>>> and all appears correct.
>>> 
>>> Each line in the apache error log is prepended by something like this:
>>> [Tue Sep 18 14:54:30 2012] [error] [client 1.2.3.4]
>>> The referer is someting like this:
>>> http://myserver.net/cgi-bin/qmailadmin/com/addmailinglist?user=postmaster&dom=adomain.co.uk&time=1347976179
>>> replaced with xxx
>>> 
>>> Here is the log snippet pruned for easier reading:
>>> 
>>> *** buffer overflow detected ***: /usr/lib/cgi-bin/qmailadmin
>>> terminated, referer: xxx
>>> === Backtrace: =, referer: xxx
>>> /lib/x86_64-linux-gnu/libc.so.6(__fortify_fail+0x37)[0x7f12e3f8e007],
>>> referer: xxx
>>> /lib/x86_64-linux-gnu/libc.so.6(+0x107f00)[0x7f12e3f8cf00], referer: xxx
>>> /lib/x86_64-linux-gnu/libc.so.6(+0x1075eb)[0x7f12e3f8c5eb], referer: xxx
>>> /lib/x86_64-linux-gnu/libc.so.6(__snprintf_chk+0x78)[0x7f12e3f8c4c8],
>>> referer: xxx
>>> /usr/lib/cgi-bin/qmailadmin[0x409534], referer: xxx
>>> /usr/lib/cgi-bin/qmailadmin[0x4107bc], referer: xxx
>>> /usr/lib/cgi-bin/qmailadmin[0x402fb5], referer: xxx
>>> /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xed)[0x7f12e3ea676d],
>>> referer: xxx
>>> /usr/lib/cgi-bin/qmailadmin[0x403551], referer: xxx
>>> === Memory map: , referer: xxx
>>> 0040-00431000 r-xp  ca:01 12699746
>>> /usr/lib/cgi-bin/qmailadmin, referer: xxx
>>> 0063-00631000 r--p 0003 ca:01 12699746
>>> /usr/lib/cgi-bin/qmailadmin, referer: xxx
>>> 00631000-00632000 rw-p 00031000 ca:01 12699746
>>> /usr/lib/cgi-bin/qmailadmin, referer: xxx
>>> 00632000-0063d000 rw-p  00:00 0 , referer: xxx
>>> 0078d000-007ae000 rw-p  00:00 0[heap],
>>> referer: xxx
>>> 7f12e3c6f000-7f12e3c84000 r-xp  ca:01 10092763
>>> /lib/x86_64-linux-gnu/libgcc_s.so.1, referer: xxx
>>> 7f12e3c84000-7f12e3e83000 ---p 00015000 ca:01 10092763
>>> /lib/x86_64-linux-gnu/libgcc_s.so.1, referer: xxx
>>> 7f12e3e83000-7f12e3e84000 r--p 00014000 ca:01 10092763
>>> /lib/x86_64-linux-gnu/libgcc_s.so.1, referer: xxx
>>> 7f12e3e84000-7f12e3e85000 rw-p 00015000 ca:01 10092763
>>> /lib/x86_64-linux-gnu/libgcc_s.so.1, referer: xxx
>>> 7f12e3e85000-7f12e4038000 r-xp  ca:01 10092730
>>> /lib/x86_64-linux-gnu/libc-2.15.so, referer: xxx
>>> 7f12e4038000-7f12e4237000 ---p 001b3000 ca:01 10092730
>>> /lib/x86_64-linux-gnu/libc-2.15.so, referer: xxx
>>> 7f12e4237000-7f12e423b000 r--p 001b2000 ca:01 10092730
>>> /lib/x86_64-linux-gnu/libc-2.15.so, referer: xxx
>>> 7f12e423b000-7f12e423d000 rw-p 001b6000 ca:01 10092730
>>> /lib/x86_64-linux-gnu/libc-2.15.so, referer: xxx
>>> 7f12e423d000-7f12e4242000 rw-p  00:00 0 , referer: xxx
>>> 7f12e4242000-7f12e424b000 r-xp  ca:01 10092783
>>> /lib/x86_64-linux-gnu/libcrypt-2.15.so, referer: xxx
>>> 7f12e424b000-7f12e444b000 ---p 9000 ca:01 10092783
>>> /lib/x86_64-linux-gnu/libcrypt-2.15.so, referer: xxx
>>> 7f12e444b000-7f12e444c000 r--p 9000 ca:01 10092783
>>> /lib/x86_64-linux-gnu/libcrypt-2.15.so, referer: xxx
>>> 7f12e444c000-7f12e444d000 rw-p a000 ca:01 10092783
>>> /lib/x86_64-linux-gnu/libcrypt-2.15.so, referer: xxx
>>> 7f12e444d000-7f12e447b000 rw-p  00:00 0 , referer: xxx
>>> 7f12e447b000-7f12e449d000 r-xp  ca:01 10092751
>>> /lib/x86_64-linux-gnu/ld-2.15.so, referer: xxx
>>> 7f12e4688000-7f12e468b000 rw-p  00:00 0 , referer: xxx
>>> 7f12e4697000-7f12e469d000 rw-p  00:00 0 , referer: xxx
>>> 7f12e469d000-7f12e469e000 r--p 00022000 ca:01 10092751
>>> /lib/x86_64-linux-gnu/ld-2.15.so, referer: xxx
>>> 7f12e469e000-7f12e46a rw-p 00023000 ca:01 10092751
>>> /lib/x86_64-linux-gnu/ld-2.15.so, referer: xxx
>>> 7fff3851d000-7fff3853e000 rw-p  00:00 0[stack],
>>> referer: xxx
>>> 7fff385ff000-7fff3860 r-xp  00:00 0[vdso],
>>> referer: xxx
>>> ff60-ff601

Re: [vchkpw] qmailadmin buffer overflow

2012-09-20 Thread Tom Collins
That should be just fine. Keep a copy of the currently-installed version to 
switch back to after debugging. 

-Tom
(Sent from my phone; forgive my brevity)

On Sep 19, 2012, at 3:35 PM, Bob Hutchinson  wrote:
> OK, I will look into doing this at a quiet time.
> I notice that there is a binary in the source tree which is much larger
> and which says it's unstripped, I might just try that one first.

!DSPAM:505b528534213501068019!



Re: [vchkpw] qmailadmin buffer overflow

2012-09-19 Thread Bob Hutchinson
On 19/09/12 11:52, Tom Collins wrote:
> I'm offline, with limited Internet connectivity, so apologies if someone else 
> has already responded. 
> 
> I think you need to recompile QmailAdmin and manually install the binary. The 
> installation process strips debug information that would probably show up in 
> this dump and help isolate the problem. 

OK, I will look into doing this at a quiet time.
I notice that there is a binary in the source tree which is much larger
and which says it's unstripped, I might just try that one first.


> 
> -Tom
> (Sent from my phone; forgive my brevity)
> 
> On Sep 18, 2012, at 5:45 PM, Bob Hutchinson  wrote:
> 
>> Not sure if this is the right place to post but I don't know where else.
>>
>> I am using qmailadmin in a standard shupp toaster, on a 64bit machine.
>> qmailadmin-1.2.15
>>
>> I getting a WSOD after adding a new mailinglist. The mailinglist is made
>> and all appears correct.
>>
>> Each line in the apache error log is prepended by something like this:
>> [Tue Sep 18 14:54:30 2012] [error] [client 1.2.3.4]
>> The referer is someting like this:
>> http://myserver.net/cgi-bin/qmailadmin/com/addmailinglist?user=postmaster&dom=adomain.co.uk&time=1347976179
>> replaced with xxx
>>
>> Here is the log snippet pruned for easier reading:
>>
>> *** buffer overflow detected ***: /usr/lib/cgi-bin/qmailadmin
>> terminated, referer: xxx
>> === Backtrace: =, referer: xxx
>> /lib/x86_64-linux-gnu/libc.so.6(__fortify_fail+0x37)[0x7f12e3f8e007],
>> referer: xxx
>> /lib/x86_64-linux-gnu/libc.so.6(+0x107f00)[0x7f12e3f8cf00], referer: xxx
>> /lib/x86_64-linux-gnu/libc.so.6(+0x1075eb)[0x7f12e3f8c5eb], referer: xxx
>> /lib/x86_64-linux-gnu/libc.so.6(__snprintf_chk+0x78)[0x7f12e3f8c4c8],
>> referer: xxx
>> /usr/lib/cgi-bin/qmailadmin[0x409534], referer: xxx
>> /usr/lib/cgi-bin/qmailadmin[0x4107bc], referer: xxx
>> /usr/lib/cgi-bin/qmailadmin[0x402fb5], referer: xxx
>> /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xed)[0x7f12e3ea676d],
>> referer: xxx
>> /usr/lib/cgi-bin/qmailadmin[0x403551], referer: xxx
>> === Memory map: , referer: xxx
>> 0040-00431000 r-xp  ca:01 12699746
>> /usr/lib/cgi-bin/qmailadmin, referer: xxx
>> 0063-00631000 r--p 0003 ca:01 12699746
>> /usr/lib/cgi-bin/qmailadmin, referer: xxx
>> 00631000-00632000 rw-p 00031000 ca:01 12699746
>> /usr/lib/cgi-bin/qmailadmin, referer: xxx
>> 00632000-0063d000 rw-p  00:00 0 , referer: xxx
>> 0078d000-007ae000 rw-p  00:00 0[heap],
>> referer: xxx
>> 7f12e3c6f000-7f12e3c84000 r-xp  ca:01 10092763
>> /lib/x86_64-linux-gnu/libgcc_s.so.1, referer: xxx
>> 7f12e3c84000-7f12e3e83000 ---p 00015000 ca:01 10092763
>> /lib/x86_64-linux-gnu/libgcc_s.so.1, referer: xxx
>> 7f12e3e83000-7f12e3e84000 r--p 00014000 ca:01 10092763
>> /lib/x86_64-linux-gnu/libgcc_s.so.1, referer: xxx
>> 7f12e3e84000-7f12e3e85000 rw-p 00015000 ca:01 10092763
>> /lib/x86_64-linux-gnu/libgcc_s.so.1, referer: xxx
>> 7f12e3e85000-7f12e4038000 r-xp  ca:01 10092730
>> /lib/x86_64-linux-gnu/libc-2.15.so, referer: xxx
>> 7f12e4038000-7f12e4237000 ---p 001b3000 ca:01 10092730
>> /lib/x86_64-linux-gnu/libc-2.15.so, referer: xxx
>> 7f12e4237000-7f12e423b000 r--p 001b2000 ca:01 10092730
>> /lib/x86_64-linux-gnu/libc-2.15.so, referer: xxx
>> 7f12e423b000-7f12e423d000 rw-p 001b6000 ca:01 10092730
>> /lib/x86_64-linux-gnu/libc-2.15.so, referer: xxx
>> 7f12e423d000-7f12e4242000 rw-p  00:00 0 , referer: xxx
>> 7f12e4242000-7f12e424b000 r-xp  ca:01 10092783
>> /lib/x86_64-linux-gnu/libcrypt-2.15.so, referer: xxx
>> 7f12e424b000-7f12e444b000 ---p 9000 ca:01 10092783
>> /lib/x86_64-linux-gnu/libcrypt-2.15.so, referer: xxx
>> 7f12e444b000-7f12e444c000 r--p 9000 ca:01 10092783
>> /lib/x86_64-linux-gnu/libcrypt-2.15.so, referer: xxx
>> 7f12e444c000-7f12e444d000 rw-p a000 ca:01 10092783
>> /lib/x86_64-linux-gnu/libcrypt-2.15.so, referer: xxx
>> 7f12e444d000-7f12e447b000 rw-p  00:00 0 , referer: xxx
>> 7f12e447b000-7f12e449d000 r-xp  ca:01 10092751
>> /lib/x86_64-linux-gnu/ld-2.15.so, referer: xxx
>> 7f12e4688000-7f12e468b000 rw-p  00:00 0 , referer: xxx
>> 7f12e4697000-7f12e469d000 rw-p  00:00 0 , referer: xxx
>> 7f12e469d000-7f12e469e000 r--p 00022000 ca:01 10092751
>> /lib/x86_64-linux-gnu/ld-2.15.so, referer: xxx
>> 7f12e469e000-7f12e46a rw-p 00023000 ca:01 10092751
>> /lib/x86_64-linux-gnu/ld-2.15.so, referer: xxx
>> 7fff3851d000-7fff3853e000 rw-p  00:00 0[stack],
>> referer: xxx
>> 7fff385ff000-7fff3860 r-xp  00:00 0[vdso],
>> referer: xxx
>> ff60-ff601000 r-xp  00:00 0
>> [vsyscall], referer: xxx
>>
>>
>> -- 
>> -
>> Bob Hutchinson
>> Midwales dot com
>> -
>>
>>
>>
> 
> 
> 
> 
> 
> 


-- 
-
Bob Hutchinson
Midwales dot com
-

!DSPAM:5059ca2a34211204981993!



Re: [vchkpw] qmailadmin buffer overflow

2012-09-19 Thread Tom Collins
I'm offline, with limited Internet connectivity, so apologies if someone else 
has already responded. 

I think you need to recompile QmailAdmin and manually install the binary. The 
installation process strips debug information that would probably show up in 
this dump and help isolate the problem. 

-Tom
(Sent from my phone; forgive my brevity)

On Sep 18, 2012, at 5:45 PM, Bob Hutchinson  wrote:

> Not sure if this is the right place to post but I don't know where else.
> 
> I am using qmailadmin in a standard shupp toaster, on a 64bit machine.
> qmailadmin-1.2.15
> 
> I getting a WSOD after adding a new mailinglist. The mailinglist is made
> and all appears correct.
> 
> Each line in the apache error log is prepended by something like this:
> [Tue Sep 18 14:54:30 2012] [error] [client 1.2.3.4]
> The referer is someting like this:
> http://myserver.net/cgi-bin/qmailadmin/com/addmailinglist?user=postmaster&dom=adomain.co.uk&time=1347976179
> replaced with xxx
> 
> Here is the log snippet pruned for easier reading:
> 
> *** buffer overflow detected ***: /usr/lib/cgi-bin/qmailadmin
> terminated, referer: xxx
> === Backtrace: =, referer: xxx
> /lib/x86_64-linux-gnu/libc.so.6(__fortify_fail+0x37)[0x7f12e3f8e007],
> referer: xxx
> /lib/x86_64-linux-gnu/libc.so.6(+0x107f00)[0x7f12e3f8cf00], referer: xxx
> /lib/x86_64-linux-gnu/libc.so.6(+0x1075eb)[0x7f12e3f8c5eb], referer: xxx
> /lib/x86_64-linux-gnu/libc.so.6(__snprintf_chk+0x78)[0x7f12e3f8c4c8],
> referer: xxx
> /usr/lib/cgi-bin/qmailadmin[0x409534], referer: xxx
> /usr/lib/cgi-bin/qmailadmin[0x4107bc], referer: xxx
> /usr/lib/cgi-bin/qmailadmin[0x402fb5], referer: xxx
> /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xed)[0x7f12e3ea676d],
> referer: xxx
> /usr/lib/cgi-bin/qmailadmin[0x403551], referer: xxx
> === Memory map: , referer: xxx
> 0040-00431000 r-xp  ca:01 12699746
> /usr/lib/cgi-bin/qmailadmin, referer: xxx
> 0063-00631000 r--p 0003 ca:01 12699746
> /usr/lib/cgi-bin/qmailadmin, referer: xxx
> 00631000-00632000 rw-p 00031000 ca:01 12699746
> /usr/lib/cgi-bin/qmailadmin, referer: xxx
> 00632000-0063d000 rw-p  00:00 0 , referer: xxx
> 0078d000-007ae000 rw-p  00:00 0[heap],
> referer: xxx
> 7f12e3c6f000-7f12e3c84000 r-xp  ca:01 10092763
> /lib/x86_64-linux-gnu/libgcc_s.so.1, referer: xxx
> 7f12e3c84000-7f12e3e83000 ---p 00015000 ca:01 10092763
> /lib/x86_64-linux-gnu/libgcc_s.so.1, referer: xxx
> 7f12e3e83000-7f12e3e84000 r--p 00014000 ca:01 10092763
> /lib/x86_64-linux-gnu/libgcc_s.so.1, referer: xxx
> 7f12e3e84000-7f12e3e85000 rw-p 00015000 ca:01 10092763
> /lib/x86_64-linux-gnu/libgcc_s.so.1, referer: xxx
> 7f12e3e85000-7f12e4038000 r-xp  ca:01 10092730
> /lib/x86_64-linux-gnu/libc-2.15.so, referer: xxx
> 7f12e4038000-7f12e4237000 ---p 001b3000 ca:01 10092730
> /lib/x86_64-linux-gnu/libc-2.15.so, referer: xxx
> 7f12e4237000-7f12e423b000 r--p 001b2000 ca:01 10092730
> /lib/x86_64-linux-gnu/libc-2.15.so, referer: xxx
> 7f12e423b000-7f12e423d000 rw-p 001b6000 ca:01 10092730
> /lib/x86_64-linux-gnu/libc-2.15.so, referer: xxx
> 7f12e423d000-7f12e4242000 rw-p  00:00 0 , referer: xxx
> 7f12e4242000-7f12e424b000 r-xp  ca:01 10092783
> /lib/x86_64-linux-gnu/libcrypt-2.15.so, referer: xxx
> 7f12e424b000-7f12e444b000 ---p 9000 ca:01 10092783
> /lib/x86_64-linux-gnu/libcrypt-2.15.so, referer: xxx
> 7f12e444b000-7f12e444c000 r--p 9000 ca:01 10092783
> /lib/x86_64-linux-gnu/libcrypt-2.15.so, referer: xxx
> 7f12e444c000-7f12e444d000 rw-p a000 ca:01 10092783
> /lib/x86_64-linux-gnu/libcrypt-2.15.so, referer: xxx
> 7f12e444d000-7f12e447b000 rw-p  00:00 0 , referer: xxx
> 7f12e447b000-7f12e449d000 r-xp  ca:01 10092751
> /lib/x86_64-linux-gnu/ld-2.15.so, referer: xxx
> 7f12e4688000-7f12e468b000 rw-p  00:00 0 , referer: xxx
> 7f12e4697000-7f12e469d000 rw-p  00:00 0 , referer: xxx
> 7f12e469d000-7f12e469e000 r--p 00022000 ca:01 10092751
> /lib/x86_64-linux-gnu/ld-2.15.so, referer: xxx
> 7f12e469e000-7f12e46a rw-p 00023000 ca:01 10092751
> /lib/x86_64-linux-gnu/ld-2.15.so, referer: xxx
> 7fff3851d000-7fff3853e000 rw-p  00:00 0[stack],
> referer: xxx
> 7fff385ff000-7fff3860 r-xp  00:00 0[vdso],
> referer: xxx
> ff60-ff601000 r-xp  00:00 0
> [vsyscall], referer: xxx
> 
> 
> -- 
> -
> Bob Hutchinson
> Midwales dot com
> -
> 
> 
> 


!DSPAM:5059a45e34211364084616!



RE: [vchkpw] qmailadmin issue

2010-03-22 Thread Paul H. Giesberts
Hi Andrew,

Have you checked your qmail logs? Do you get an aack child crashed? If so 
google that.

Regards,
Paul Giesberts
QA & IT Manager
Servicecare
DDI: ++44-161-6881985

-Original Message-
From: asi...@i3tcorp.com [mailto:asi...@i3tcorp.com] 
Sent: 19 March 2010 18:36
To: vchkpw@inter7.com
Subject: [vchkpw] qmailadmin issue

Hi all,

Hopefully this is the right place for this issue. If not please let me
know. I've built a new mail server on Ubuntu with qmail, vopopmail,
dovecot, clamav, qmailadmin etc. Everything is working well with one
exception. When I set a vacation message with qmailadmin it stops that
users mail completely, no vacation message, or bounce back just stopped.
I've checked the qmailadmin install and the autoresponder install as well
as the log files. At this point I'm not sure what to do. Any suggestions
would be appreciated.

Andrew





!DSPAM:4ba734df32711130115365!



Re: [vchkpw] qmailadmin issue

2010-03-19 Thread Remo Mattei
Please contact me offline

Remo


On 3/19/10 15:09 , "asi...@i3tcorp.com"  wrote:

> root
> 
> 
>> The user no the path
>> 
>> 
>> 
>> 
>> On 3/19/10 14:21 , "asi...@i3tcorp.com"  wrote:
>> 
>>> /var/www/html/images/qmailadmin
>>> 
>>> 
 What is your web running under?
 
 
 On 3/19/10 13:56 , "asi...@i3tcorp.com"  wrote:
 
> Hi Remo,
> 
> Below are the permissions on qmailadmin. Is there anything else I
> should
> check?
> 
> 
> Andrew
> 
> -rwsr-sr-x 1 vpopmail vchkpw 193K 2010-03-19 13:16
> /usr/lib/cgi-bin/qmailadmin
> 
> 
> 
>> Check permissions
>> Remo
>> 
>> 
>> On 3/19/10 12:35 , "asi...@i3tcorp.com"  wrote:
>> 
>>> Hi all,
>>> 
>>> Hopefully this is the right place for this issue. If not please let
>>> me
>>> know. I've built a new mail server on Ubuntu with qmail, vopopmail,
>>> dovecot, clamav, qmailadmin etc. Everything is working well with one
>>> exception. When I set a vacation message with qmailadmin it stops
>>> that
>>> users mail completely, no vacation message, or bounce back just
>>> stopped.
>>> I've checked the qmailadmin install and the autoresponder install as
>>> well
>>> as the log files. At this point I'm not sure what to do. Any
>>> suggestions
>>> would be appreciated.
>>> 
>>> Andrew
>>> 
>>> 
>>> 
>>> 
>>> 
>>> 
>>> 
>> 
>> 
>> 
>> 
>> 
> 
> 
> 
> 
> 
> 
> 
> 
 
 
 
 
 
>>> 
>>> 
>>> 
>>> 
>>> 
>>> 
>>> 
>>> 
>> 
>> 
>> 
>> 
>> 
> 
> 
> 
> 
> 
> 
> 
> 


!DSPAM:4ba3e9d232711204313390!



Re: [vchkpw] qmailadmin issue

2010-03-19 Thread Remo Mattei
Please do not tell me that your apache is running as root.

Can linux r u running? (centos, debian etc)


On 3/19/10 15:09 , "asi...@i3tcorp.com"  wrote:

> root
> 
> 
>> The user no the path
>> 
>> 
>> 
>> 
>> On 3/19/10 14:21 , "asi...@i3tcorp.com"  wrote:
>> 
>>> /var/www/html/images/qmailadmin
>>> 
>>> 
 What is your web running under?
 
 
 On 3/19/10 13:56 , "asi...@i3tcorp.com"  wrote:
 
> Hi Remo,
> 
> Below are the permissions on qmailadmin. Is there anything else I
> should
> check?
> 
> 
> Andrew
> 
> -rwsr-sr-x 1 vpopmail vchkpw 193K 2010-03-19 13:16
> /usr/lib/cgi-bin/qmailadmin
> 
> 
> 
>> Check permissions
>> Remo
>> 
>> 
>> On 3/19/10 12:35 , "asi...@i3tcorp.com"  wrote:
>> 
>>> Hi all,
>>> 
>>> Hopefully this is the right place for this issue. If not please let
>>> me
>>> know. I've built a new mail server on Ubuntu with qmail, vopopmail,
>>> dovecot, clamav, qmailadmin etc. Everything is working well with one
>>> exception. When I set a vacation message with qmailadmin it stops
>>> that
>>> users mail completely, no vacation message, or bounce back just
>>> stopped.
>>> I've checked the qmailadmin install and the autoresponder install as
>>> well
>>> as the log files. At this point I'm not sure what to do. Any
>>> suggestions
>>> would be appreciated.
>>> 
>>> Andrew
>>> 
>>> 
>>> 
>>> 
>>> 
>>> 
>>> 
>> 
>> 
>> 
>> 
>> 
> 
> 
> 
> 
> 
> 
> 
> 
 
 
 
 
 
>>> 
>>> 
>>> 
>>> 
>>> 
>>> 
>>> 
>>> 
>> 
>> 
>> 
>> 
>> 
> 
> 
> 
> 
> 
> 
> 
> 


!DSPAM:4ba3e9c132711270225956!



Re: [vchkpw] qmailadmin issue

2010-03-19 Thread asimon
root


> The user no the path
>
>
>
>
> On 3/19/10 14:21 , "asi...@i3tcorp.com"  wrote:
>
>> /var/www/html/images/qmailadmin
>>
>>
>>> What is your web running under?
>>>
>>>
>>> On 3/19/10 13:56 , "asi...@i3tcorp.com"  wrote:
>>>
 Hi Remo,

 Below are the permissions on qmailadmin. Is there anything else I
 should
 check?


 Andrew

 -rwsr-sr-x 1 vpopmail vchkpw 193K 2010-03-19 13:16
 /usr/lib/cgi-bin/qmailadmin



> Check permissions
> Remo
>
>
> On 3/19/10 12:35 , "asi...@i3tcorp.com"  wrote:
>
>> Hi all,
>>
>> Hopefully this is the right place for this issue. If not please let
>> me
>> know. I've built a new mail server on Ubuntu with qmail, vopopmail,
>> dovecot, clamav, qmailadmin etc. Everything is working well with one
>> exception. When I set a vacation message with qmailadmin it stops
>> that
>> users mail completely, no vacation message, or bounce back just
>> stopped.
>> I've checked the qmailadmin install and the autoresponder install as
>> well
>> as the log files. At this point I'm not sure what to do. Any
>> suggestions
>> would be appreciated.
>>
>> Andrew
>>
>>
>>
>>
>>
>>
>>
>
>
>
>
>








>>>
>>>
>>>
>>>
>>>
>>
>>
>>
>>
>>
>>
>>
>>
>
>
> 
>
>



!DSPAM:4ba3e82232717229656215!



Re: [vchkpw] qmailadmin issue

2010-03-19 Thread Remo Mattei
The user no the path




On 3/19/10 14:21 , "asi...@i3tcorp.com"  wrote:

> /var/www/html/images/qmailadmin
> 
> 
>> What is your web running under?
>> 
>> 
>> On 3/19/10 13:56 , "asi...@i3tcorp.com"  wrote:
>> 
>>> Hi Remo,
>>> 
>>> Below are the permissions on qmailadmin. Is there anything else I should
>>> check?
>>> 
>>> 
>>> Andrew
>>> 
>>> -rwsr-sr-x 1 vpopmail vchkpw 193K 2010-03-19 13:16
>>> /usr/lib/cgi-bin/qmailadmin
>>> 
>>> 
>>> 
 Check permissions
 Remo
 
 
 On 3/19/10 12:35 , "asi...@i3tcorp.com"  wrote:
 
> Hi all,
> 
> Hopefully this is the right place for this issue. If not please let me
> know. I've built a new mail server on Ubuntu with qmail, vopopmail,
> dovecot, clamav, qmailadmin etc. Everything is working well with one
> exception. When I set a vacation message with qmailadmin it stops that
> users mail completely, no vacation message, or bounce back just
> stopped.
> I've checked the qmailadmin install and the autoresponder install as
> well
> as the log files. At this point I'm not sure what to do. Any
> suggestions
> would be appreciated.
> 
> Andrew
> 
> 
> 
> 
> 
> 
> 
 
 
 
 
 
>>> 
>>> 
>>> 
>>> 
>>> 
>>> 
>>> 
>>> 
>> 
>> 
>> 
>> 
>> 
> 
> 
> 
> 
> 
> 
> 
> 


!DSPAM:4ba3e33732711382512014!



Re: [vchkpw] qmailadmin issue

2010-03-19 Thread asimon
/var/www/html/images/qmailadmin


> What is your web running under?
>
>
> On 3/19/10 13:56 , "asi...@i3tcorp.com"  wrote:
>
>> Hi Remo,
>>
>> Below are the permissions on qmailadmin. Is there anything else I should
>> check?
>>
>>
>> Andrew
>>
>> -rwsr-sr-x 1 vpopmail vchkpw 193K 2010-03-19 13:16
>> /usr/lib/cgi-bin/qmailadmin
>>
>>
>>
>>> Check permissions
>>> Remo
>>>
>>>
>>> On 3/19/10 12:35 , "asi...@i3tcorp.com"  wrote:
>>>
 Hi all,

 Hopefully this is the right place for this issue. If not please let me
 know. I've built a new mail server on Ubuntu with qmail, vopopmail,
 dovecot, clamav, qmailadmin etc. Everything is working well with one
 exception. When I set a vacation message with qmailadmin it stops that
 users mail completely, no vacation message, or bounce back just
 stopped.
 I've checked the qmailadmin install and the autoresponder install as
 well
 as the log files. At this point I'm not sure what to do. Any
 suggestions
 would be appreciated.

 Andrew







>>>
>>>
>>>
>>>
>>>
>>
>>
>>
>>
>>
>>
>>
>>
>
>
> 
>
>



!DSPAM:4ba3dcd732713295711597!



Re: [vchkpw] qmailadmin issue

2010-03-19 Thread Remo Mattei
What is your web running under?


On 3/19/10 13:56 , "asi...@i3tcorp.com"  wrote:

> Hi Remo,
> 
> Below are the permissions on qmailadmin. Is there anything else I should
> check?
> 
> 
> Andrew
> 
> -rwsr-sr-x 1 vpopmail vchkpw 193K 2010-03-19 13:16
> /usr/lib/cgi-bin/qmailadmin
> 
> 
> 
>> Check permissions
>> Remo
>> 
>> 
>> On 3/19/10 12:35 , "asi...@i3tcorp.com"  wrote:
>> 
>>> Hi all,
>>> 
>>> Hopefully this is the right place for this issue. If not please let me
>>> know. I've built a new mail server on Ubuntu with qmail, vopopmail,
>>> dovecot, clamav, qmailadmin etc. Everything is working well with one
>>> exception. When I set a vacation message with qmailadmin it stops that
>>> users mail completely, no vacation message, or bounce back just stopped.
>>> I've checked the qmailadmin install and the autoresponder install as
>>> well
>>> as the log files. At this point I'm not sure what to do. Any suggestions
>>> would be appreciated.
>>> 
>>> Andrew
>>> 
>>> 
>>> 
>>> 
>>> 
>>> 
>>> 
>> 
>> 
>> 
>> 
>> 
> 
> 
> 
> 
> 
> 
> 
> 


!DSPAM:4ba3daf732711661410557!




Re: [vchkpw] qmailadmin issue

2010-03-19 Thread asimon
Hi Remo,

Below are the permissions on qmailadmin. Is there anything else I should
check?


Andrew

-rwsr-sr-x 1 vpopmail vchkpw 193K 2010-03-19 13:16
/usr/lib/cgi-bin/qmailadmin



> Check permissions
> Remo
>
>
> On 3/19/10 12:35 , "asi...@i3tcorp.com"  wrote:
>
>> Hi all,
>>
>> Hopefully this is the right place for this issue. If not please let me
>> know. I've built a new mail server on Ubuntu with qmail, vopopmail,
>> dovecot, clamav, qmailadmin etc. Everything is working well with one
>> exception. When I set a vacation message with qmailadmin it stops that
>> users mail completely, no vacation message, or bounce back just stopped.
>> I've checked the qmailadmin install and the autoresponder install as
>> well
>> as the log files. At this point I'm not sure what to do. Any suggestions
>> would be appreciated.
>>
>> Andrew
>>
>>
>>
>>
>>
>>
>>
>
>
> 
>
>



!DSPAM:4ba3d70932711837816332!



Re: [vchkpw] qmailadmin issue

2010-03-19 Thread Remo Mattei
Check permissions
Remo


On 3/19/10 12:35 , "asi...@i3tcorp.com"  wrote:

> Hi all,
> 
> Hopefully this is the right place for this issue. If not please let me
> know. I've built a new mail server on Ubuntu with qmail, vopopmail,
> dovecot, clamav, qmailadmin etc. Everything is working well with one
> exception. When I set a vacation message with qmailadmin it stops that
> users mail completely, no vacation message, or bounce back just stopped.
> I've checked the qmailadmin install and the autoresponder install as well
> as the log files. At this point I'm not sure what to do. Any suggestions
> would be appreciated.
> 
> Andrew
> 
> 
> 
> 
> 
> 
> 


!DSPAM:4ba3c5ce32711674410009!



Re: [vchkpw] qmailadmin

2008-04-16 Thread Lampa
Hello,

i found the core of problem.

Qmailadmin is staticaly linked with libvpopmail.a, so to apply new
version you must recompile qmailadmin. My problem was that i stripped
libvpopmail.a and qmailadmin have problem to link with libvpopmail.a
(undefined reference when building qmailadmin). So i created new not
stripped version of libvpopmail.a and linked with qmailadmin and
onchange works  perfectly :)

2008/4/17, D. Hilbig <[EMAIL PROTECTED]>:
>
>  I don't think the developers have updated qmailadmin to include that
>  feature.
>
>  John Simpson has a patch for qmailadmin which may work for you:
>  http://qmail.jms1.net/vpopmail/
>
>
>
>
>
>
>  -Original Message-
>  From: Lampa [mailto:[EMAIL PROTECTED]
>  Sent: Wednesday, April 16, 2008 11:34 AM
>  To: vchkpw@inter7.com
>  Subject: [vchkpw] qmailadmin
>
>  Hello,
>
>  qmailadmin is not calling vpopmaild functions ? Eg. script onchange is
>  not fired ?
>
>  Thank you.
>  --
>  Lampa
>
>
>
>
>
>
> 
>
>


-- 
Lampa

!DSPAM:4806d4b7120505972170559!



RE: [vchkpw] qmailadmin

2008-04-16 Thread D. Hilbig

I don't think the developers have updated qmailadmin to include that
feature.

John Simpson has a patch for qmailadmin which may work for you:
http://qmail.jms1.net/vpopmail/



 

-Original Message-
From: Lampa [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 16, 2008 11:34 AM
To: vchkpw@inter7.com
Subject: [vchkpw] qmailadmin

Hello,

qmailadmin is not calling vpopmaild functions ? Eg. script onchange is
not fired ?

Thank you.
-- 
Lampa





!DSPAM:48068abf120501640819354!



Re: [vchkpw] qmailadmin

2008-04-16 Thread Lampa
Seem to be 1.2.12 not working too :( same errors when compiling

2008/4/16, Lampa <[EMAIL PROTECTED]>:
> Hello,
>
>  i'm using, 5.4.26d vpopmaild and qmailadmin 1.2.11. Not patched.
>
>  Qmailadmin is staticaly linked libvpopmail.
>
>  Perhaps 1.2.12 qmailadmin should be ok ?
>
>  It's question for Bill Shupp.
>
>  Compile is not possible:
>
>  make[1]: Entering directory `/root/src/qmailadmin-1.2.11-nns'
>  source='qmailadmin.c' object='qmailadmin.o' libtool=no \
> depfile='.deps/qmailadmin.Po' tmpdepfile='.deps/qmailadmin.TPo' \
> depmode=gcc3 /bin/sh ./depcomp \
> gcc -I. -I/usr/local/vpopmail/include  -I. -I. -I. -g -O2
>  -Wall -c `test -f 'qmailadmin.c' || echo './'`qmailadmin.c
>  In file included from qmailadmin.c:44:
>  config.h:20:1: warning: "EZMLMDIR" redefined
>  In file included from qmailadmin.c:35:
>  /usr/local/vpopmail/include/vpopmail.h:148:1: warning: this is the
>  location of the previous definition
>  In file included from qmailadmin.c:48:
>  qmailadmin.h:37:1: warning: "MAX_FILE_NAME" redefined
>  In file included from qmailadmin.c:35:
>  /usr/local/vpopmail/include/vpopmail.h:146:1: warning: this is the
>  location of the previous definition
>  source='alias.c' object='alias.o' libtool=no \
> depfile='.deps/alias.Po' tmpdepfile='.deps/alias.TPo' \
> depmode=gcc3 /bin/sh ./depcomp \
> gcc -I. -I/usr/local/vpopmail/include  -I. -I. -I. -g -O2
>  -Wall -c `test -f 'alias.c' || echo './'`alias.c
>  In file included from alias.c:39:
>  config.h:20:1: warning: "EZMLMDIR" redefined
>  In file included from alias.c:30:
>  /usr/local/vpopmail/include/vpopmail.h:148:1: warning: this is the
>  location of the previous definition
>  In file included from alias.c:41:
>  qmailadmin.h:37:1: warning: "MAX_FILE_NAME" redefined
>  In file included from alias.c:30:
>  /usr/local/vpopmail/include/vpopmail.h:146:1: warning: this is the
>  location of the previous definition
>  source='autorespond.c' object='autorespond.o' libtool=no \
>
>
>  2008/4/16, Robbie Garrett <[EMAIL PROTECTED]>:
>
> > > Hello,
>  >  >
>  >  > qmailadmin is not calling vpopmaild functions ? Eg. script onchange is
>  >  > not fired ?
>  >  >
>  >  > Thank you.
>  >  > --
>  >  > Lampa
>  >  >
>  >  >
>  >  >
>  >
>  >
>  >
>  > Im thinking that there was a patch to qmailadmin for make it work.
>  >
>  >  am i correct in this?  and if so..  did u patch it?
>  >
>  >
>  >  
>  >
>  >
>
>
>
> --
>
> Lampa
>


-- 
Lampa

!DSPAM:48064d42120501841417190!



Re: [vchkpw] qmailadmin

2008-04-16 Thread Lampa
Hello,

i'm using, 5.4.26d vpopmaild and qmailadmin 1.2.11. Not patched.

Qmailadmin is staticaly linked libvpopmail.

Perhaps 1.2.12 qmailadmin should be ok ?

It's question for Bill Shupp.

Compile is not possible:

make[1]: Entering directory `/root/src/qmailadmin-1.2.11-nns'
source='qmailadmin.c' object='qmailadmin.o' libtool=no \
depfile='.deps/qmailadmin.Po' tmpdepfile='.deps/qmailadmin.TPo' \
depmode=gcc3 /bin/sh ./depcomp \
gcc -I. -I/usr/local/vpopmail/include  -I. -I. -I. -g -O2
-Wall -c `test -f 'qmailadmin.c' || echo './'`qmailadmin.c
In file included from qmailadmin.c:44:
config.h:20:1: warning: "EZMLMDIR" redefined
In file included from qmailadmin.c:35:
/usr/local/vpopmail/include/vpopmail.h:148:1: warning: this is the
location of the previous definition
In file included from qmailadmin.c:48:
qmailadmin.h:37:1: warning: "MAX_FILE_NAME" redefined
In file included from qmailadmin.c:35:
/usr/local/vpopmail/include/vpopmail.h:146:1: warning: this is the
location of the previous definition
source='alias.c' object='alias.o' libtool=no \
depfile='.deps/alias.Po' tmpdepfile='.deps/alias.TPo' \
depmode=gcc3 /bin/sh ./depcomp \
gcc -I. -I/usr/local/vpopmail/include  -I. -I. -I. -g -O2
-Wall -c `test -f 'alias.c' || echo './'`alias.c
In file included from alias.c:39:
config.h:20:1: warning: "EZMLMDIR" redefined
In file included from alias.c:30:
/usr/local/vpopmail/include/vpopmail.h:148:1: warning: this is the
location of the previous definition
In file included from alias.c:41:
qmailadmin.h:37:1: warning: "MAX_FILE_NAME" redefined
In file included from alias.c:30:
/usr/local/vpopmail/include/vpopmail.h:146:1: warning: this is the
location of the previous definition
source='autorespond.c' object='autorespond.o' libtool=no \


2008/4/16, Robbie Garrett <[EMAIL PROTECTED]>:
> > Hello,
>  >
>  > qmailadmin is not calling vpopmaild functions ? Eg. script onchange is
>  > not fired ?
>  >
>  > Thank you.
>  > --
>  > Lampa
>  >
>  >
>  >
>
>
>
> Im thinking that there was a patch to qmailadmin for make it work.
>
>  am i correct in this?  and if so..  did u patch it?
>
>
>  
>
>


-- 
Lampa

!DSPAM:48064cd3120501282413237!



Re: [vchkpw] qmailadmin

2008-04-16 Thread Robbie Garrett
> Hello,
>
> qmailadmin is not calling vpopmaild functions ? Eg. script onchange is
> not fired ?
>
> Thank you.
> --
> Lampa
>
> 
>


Im thinking that there was a patch to qmailadmin for make it work.

am i correct in this?  and if so..  did u patch it?


!DSPAM:48064a7f120501176517693!



Re: [vchkpw] qmailadmin "invalid user"

2007-10-11 Thread João Luiz - Terra
Hi Sree,

Great!

Thank you!!!

Regards,
Joao
  - Original Message - 
  From: Sreedevi 
  To: vchkpw@inter7.com 
  Sent: Thursday, October 11, 2007 6:04 AM
  Subject: Re: [vchkpw] qmailadmin "invalid user"


  Hi,

  I have faced the similar problem. In my case SELINUX was the culprit. Please 
disable the same if you are using Redhat linux and if you SELINUX is set to 
other than disabled. 

  Edit /etc/sysconfig/selinux and set 
  SELINUX=disabled

  Sincerely,
  Sree




  - Original Message 
  From: João Luiz - Terra <[EMAIL PROTECTED]>
  To: vchkpw@inter7.com
  Sent: Thursday, 11 October, 2007 7:49:20 AM
  Subject: [vchkpw] qmailadmin "invalid user"


  Hi,

  Sorry. My english is not good :)

  I am using qmail toaster. (http://www.shupp.org/toaster)
  After the installation, it is all certainty smtp, pop3, webmail, but 
qmailadmin does not function.
  I enter postmaster, domain and password, but it returns "invalid user".
  Can you help me?

  Regards,
  Joao




--
  Download prohibited? No problem. CHAT from any browser, without download.


--
  Esta mensagem foi verificada pelo E-mail Protegido Terra.
  Scan engine: McAfee VirusScan / Atualizado em 10/10/2007 / Versão: 5.1.00/5138
  Proteja o seu e-mail Terra: http://mail.terra.com.br/ 


Re: [vchkpw] qmailadmin "invalid user"

2007-10-11 Thread Sreedevi
Hi,

I have faced the similar problem. In my case SELINUX was the culprit. Please 
disable the same if you are using Redhat linux and if you SELINUX is set to 
other than disabled. 

Edit /etc/sysconfig/selinux and set 
SELINUX=disabled

Sincerely,
Sree



- Original Message 
From: João Luiz - Terra <[EMAIL PROTECTED]>
To: vchkpw@inter7.com
Sent: Thursday, 11 October, 2007 7:49:20 AM
Subject: [vchkpw] qmailadmin "invalid user"



 
 


Hi,

 

Sorry. My english is not good :)

 

I am using qmail toaster. (http://www.shupp.org/toaster)


After the installation, it is all certainty smtp, 
pop3, webmail, but qmailadmin does not function.
I enter postmaster, domain 
and password, but it returns "invalid user".
Can you help me?

 

Regards,

Joao







  Flying to Bangalore or Bhopal? Search for tickets at 
http://in.farechase.yahoo.com

RE: [vchkpw] qmailadmin unable to login

2007-02-27 Thread Manish Jain [HUGHES]
Dear claas,

Permissions are as follows:

[EMAIL PROTECTED] ~]# ls -al /var/www/cgi-bin/qmailadmin
-rwsr-sr-x  1 vpopmail vchkpw 260236 Feb 22 15:37
/var/www/cgi-bin/qmailadmin

Regards, 
  
Manish Jain 
(Sr. Engineer - IDC) 
Hughes Communications India Ltd.
Plot-1, Sector-18,
Electronic City, Gurgaon. 
Email: [EMAIL PROTECTED] 

Ph. : 91 124 3072681
  91 124 3072589 

__

Disclaimer:
 
The information contained in this electronic message and any attachments to
this message are intended for the exclusive use of the addressee(s) and may
contain proprietary, confidential or privileged information. If you are not
the intended recipient, you should not disseminate, distribute or copy this
e-mail. Please notify the sender immediately and destroy all copies of this
message and any attachments. 
 
WARNING: Computer viruses can be transmitted via email. The recipient should
check this email and any attachments for the presence of viruses. The
company accepts no liability for any damage caused by any virus transmitted
by this email.


-Original Message-
From: Claas Langbehn [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, February 28, 2007 12:04 AM
To: vchkpw@inter7.com
Subject: Re: [vchkpw] qmailadmin unable to login

Hello!

> I have installed Netqmail+vchkpw+vpopmail+qmailadmin. Now I am not able to
> login into the qmailadmin using postmaster account. It's saying "Invalid
> Login"

Probably a permissions problem. qmailadmin needs to run SUID as vpopmail.

$ ls -al /home/vpopmail/www.example.com/cgi-bin/qmailadmin
-rwsr-sr-x 1 vpopmail vchkpw 144256 2007-02-21 20:58 qmailadmin


claas




Re: [vchkpw] qmailadmin unable to login

2007-02-27 Thread Claas Langbehn
Hello!

> I have installed Netqmail+vchkpw+vpopmail+qmailadmin. Now I am not able to
> login into the qmailadmin using postmaster account. It's saying "Invalid
> Login"

Probably a permissions problem. qmailadmin needs to run SUID as vpopmail.

$ ls -al /home/vpopmail/www.example.com/cgi-bin/qmailadmin
-rwsr-sr-x 1 vpopmail vchkpw 144256 2007-02-21 20:58 qmailadmin


claas



RE: [vchkpw] qmailadmin question

2006-09-05 Thread saimir hafizi
OK, my apologies.
So, how can I deal with this case then.
Do I have to change anything in these two lines.

-Original Message-
From: Michael Johnson [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 05, 2006 3:49 PM
To: vchkpw@inter7.com
Subject: Re: [vchkpw] qmailadmin question

Saimir, next time please keep discussion on the list.

>From the file he sent, apache is running as www-data:www-data

___
Michael Johnson   626-852-9696 Ext. 103
System Administrator  [EMAIL PROTECTED]
PhD Computing  http://www.phdcomputing.net/

Remo Mattei wrote:
> what's the username that apache is running under? not were it is..
> 
> Remo
> 
> saimir hafizi wrote:
>> /usr/share/apache
>> /usr/share/apache/default-configs/apache
>> /usr/lib/apache
>> /var/lib/apache
>> /etc/apache
>>
>> -Original Message-
>> From: Remo Mattei [mailto:[EMAIL PROTECTED] 
>> Sent: Tuesday, September 05, 2006 1:59 PM
>> To: vchkpw@inter7.com
>> Subject: Re: [vchkpw] qmailadmin question
>>
>> who is apache running under?
>>
>> saimir hafizi wrote:
>>   
>>
>>
>>
>>   
> 
> 





Re: [vchkpw] qmailadmin question

2006-09-05 Thread Michael Johnson
Saimir, next time please keep discussion on the list.

>From the file he sent, apache is running as www-data:www-data

___
Michael Johnson   626-852-9696 Ext. 103
System Administrator  [EMAIL PROTECTED]
PhD Computing  http://www.phdcomputing.net/

Remo Mattei wrote:
> what's the username that apache is running under? not were it is..
> 
> Remo
> 
> saimir hafizi wrote:
>> /usr/share/apache
>> /usr/share/apache/default-configs/apache
>> /usr/lib/apache
>> /var/lib/apache
>> /etc/apache
>>
>> -Original Message-
>> From: Remo Mattei [mailto:[EMAIL PROTECTED] 
>> Sent: Tuesday, September 05, 2006 1:59 PM
>> To: vchkpw@inter7.com
>> Subject: Re: [vchkpw] qmailadmin question
>>
>> who is apache running under?
>>
>> saimir hafizi wrote:
>>   
>>
>>
>>
>>   
> 
> 


Re: [vchkpw] qmailadmin question

2006-09-05 Thread Michael Johnson
That is just who owns those files. Check httpd.conf for lines like the
following:

User nobody
Group #-1

Then say what those read.

___
Michael Johnson   626-852-9696 Ext. 103
System Administrator  [EMAIL PROTECTED]
PhD Computing  http://www.phdcomputing.net/

saimir hafizi wrote:
> Remo,
> Am I missing anything?
> 
> -Original Message-
> From: Remo Mattei [mailto:[EMAIL PROTECTED] 
> Sent: Tuesday, September 05, 2006 2:06 PM
> To: vchkpw@inter7.com
> Subject: Re: [vchkpw] qmailadmin question
> 
> what's the username that apache is running under? not were it is..
> 
> Remo
> 
> saimir hafizi wrote:
>> /usr/share/apache
>> /usr/share/apache/default-configs/apache
>> /usr/lib/apache
>> /var/lib/apache
>> /etc/apache
>>
>> -Original Message-
>> From: Remo Mattei [mailto:[EMAIL PROTECTED] 
>> Sent: Tuesday, September 05, 2006 1:59 PM
>> To: vchkpw@inter7.com
>> Subject: Re: [vchkpw] qmailadmin question
>>
>> who is apache running under?
>>
>> saimir hafizi wrote:
>>   
>>
>>
>>
>>   
> 
> 
> 
> 
> 


RE: [vchkpw] qmailadmin question

2006-09-05 Thread saimir hafizi
Remo,
Am I missing anything?

-Original Message-
From: Remo Mattei [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 05, 2006 2:06 PM
To: vchkpw@inter7.com
Subject: Re: [vchkpw] qmailadmin question

what's the username that apache is running under? not were it is..

Remo

saimir hafizi wrote:
> /usr/share/apache
> /usr/share/apache/default-configs/apache
> /usr/lib/apache
> /var/lib/apache
> /etc/apache
>
> -Original Message-
> From: Remo Mattei [mailto:[EMAIL PROTECTED] 
> Sent: Tuesday, September 05, 2006 1:59 PM
> To: vchkpw@inter7.com
> Subject: Re: [vchkpw] qmailadmin question
>
> who is apache running under?
>
> saimir hafizi wrote:
>   
>
>
>
>   





RE: [vchkpw] qmailadmin question

2006-09-05 Thread saimir hafizi
> /usr/share/apache  -root
> /usr/share/apache/default-configs/apache   -root
> /usr/lib/apache-root
> /var/lib/apache-root
> /etc/apache-root

-Original Message-
From: Remo Mattei [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 05, 2006 2:06 PM
To: vchkpw@inter7.com
Subject: Re: [vchkpw] qmailadmin question

what's the username that apache is running under? not were it is..

Remo

saimir hafizi wrote:
> /usr/share/apache
> /usr/share/apache/default-configs/apache
> /usr/lib/apache
> /var/lib/apache
> /etc/apache
>
> -Original Message-
> From: Remo Mattei [mailto:[EMAIL PROTECTED] 
> Sent: Tuesday, September 05, 2006 1:59 PM
> To: vchkpw@inter7.com
> Subject: Re: [vchkpw] qmailadmin question
>
> who is apache running under?
>
> saimir hafizi wrote:
>   
>
>
>
>   





Re: [vchkpw] qmailadmin question

2006-09-05 Thread Remo Mattei
what's the username that apache is running under? not were it is..

Remo

saimir hafizi wrote:
> /usr/share/apache
> /usr/share/apache/default-configs/apache
> /usr/lib/apache
> /var/lib/apache
> /etc/apache
>
> -Original Message-
> From: Remo Mattei [mailto:[EMAIL PROTECTED] 
> Sent: Tuesday, September 05, 2006 1:59 PM
> To: vchkpw@inter7.com
> Subject: Re: [vchkpw] qmailadmin question
>
> who is apache running under?
>
> saimir hafizi wrote:
>   
>
>
>
>   


RE: [vchkpw] qmailadmin question

2006-09-05 Thread saimir hafizi
/usr/share/apache
/usr/share/apache/default-configs/apache
/usr/lib/apache
/var/lib/apache
/etc/apache

-Original Message-
From: Remo Mattei [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 05, 2006 1:59 PM
To: vchkpw@inter7.com
Subject: Re: [vchkpw] qmailadmin question

who is apache running under?

saimir hafizi wrote:
> debian:/usr/lib/cgi-bin# ls -al
>
> total 184
>
> drwxr-xr-x3 root root 4096 2006-08-18 23:08 .
>
> drwxr-xr-x  107 root root36864 2006-08-20 12:12 ..
>
> -rwsr-sr-x1 vpopmail vchkpw 137816 2006-08-18 23:08 qmailadmin
>
> drwxr-xr-x3 root root 4096 2006-08-18 22:56 vqadmin
>
> -Original Message-
> From: Remo Mattei [mailto:[EMAIL PROTECTED] 
> Sent: Tuesday, September 05, 2006 1:41 PM
> To: vchkpw@inter7.com
> Subject: Re: [vchkpw] qmailadmin question
>
> who is it running under? check permission on that qmailadmin
>
> Remo
>
> saimir hafizi wrote:
>   
>
>
>
>   





Re: [vchkpw] qmailadmin question

2006-09-05 Thread Remo Mattei
who is apache running under?

saimir hafizi wrote:
> debian:/usr/lib/cgi-bin# ls -al
>
> total 184
>
> drwxr-xr-x3 root root 4096 2006-08-18 23:08 .
>
> drwxr-xr-x  107 root root36864 2006-08-20 12:12 ..
>
> -rwsr-sr-x1 vpopmail vchkpw 137816 2006-08-18 23:08 qmailadmin
>
> drwxr-xr-x3 root root 4096 2006-08-18 22:56 vqadmin
>
> -Original Message-
> From: Remo Mattei [mailto:[EMAIL PROTECTED] 
> Sent: Tuesday, September 05, 2006 1:41 PM
> To: vchkpw@inter7.com
> Subject: Re: [vchkpw] qmailadmin question
>
> who is it running under? check permission on that qmailadmin
>
> Remo
>
> saimir hafizi wrote:
>   
>
>
>
>   


RE: [vchkpw] qmailadmin question

2006-09-05 Thread saimir hafizi
debian:/usr/lib/cgi-bin# ls -al

total 184

drwxr-xr-x3 root root 4096 2006-08-18 23:08 .

drwxr-xr-x  107 root root36864 2006-08-20 12:12 ..

-rwsr-sr-x1 vpopmail vchkpw 137816 2006-08-18 23:08 qmailadmin

drwxr-xr-x3 root root 4096 2006-08-18 22:56 vqadmin

-Original Message-
From: Remo Mattei [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 05, 2006 1:41 PM
To: vchkpw@inter7.com
Subject: Re: [vchkpw] qmailadmin question

who is it running under? check permission on that qmailadmin

Remo

saimir hafizi wrote:
>
> Hi there,
>
> When accessing from web qmailadmin, I get this:
>
>
>   *Forbidden*
>
> You don't have permission to access /cgi-bin/qmailadmin on this server.
>
> 
> /Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5
> PHP/4.3.10-16 mod_ssl/2.0.54 OpenSSL/0.9.7e mod_perl/1.999.21
> Perl/v5.8.4 Server at 100.100.100.1 Port 80/
>
>  
>
> Any ideas please?
>
> Thks
>
>  
>





Re: [vchkpw] qmailadmin question

2006-09-05 Thread Remo Mattei
who is it running under? check permission on that qmailadmin

Remo

saimir hafizi wrote:
>
> Hi there,
>
> When accessing from web qmailadmin, I get this:
>
>
>   *Forbidden*
>
> You don't have permission to access /cgi-bin/qmailadmin on this server.
>
> 
> /Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5
> PHP/4.3.10-16 mod_ssl/2.0.54 OpenSSL/0.9.7e mod_perl/1.999.21
> Perl/v5.8.4 Server at 100.100.100.1 Port 80/
>
>  
>
> Any ideas please?
>
> Thks
>
>  
>


Re: [vchkpw] qmailadmin + quota usage error

2005-07-29 Thread Rick Macdougall

Ronaldo Chan wrote:


Hi Guys,

 Can someone from the group can explain why the user quota doesn't 
update properly on qmailadmin interface while on
vuserinfo it display the correct usage. :) sorry if this question has 
been ask before.


My setup is vpopmail 5.5.0 and qmailadmin 1.2.7 on OpenBSD 3.7


Hi,

Possibly because 5.5.0 is not even close to stable ?

Where did you get your 5.5.0 version ?

Regards,

Rick



Re: [vchkpw] Qmailadmin return "Error: Illegal username" when changing password

2004-10-04 Thread michele
Title: Messaggio



The problem is with 
every username of the domains on my server; it occurs every time with every 
account...
Thanks
 
On Oct 2, 2004, at 12:51 PM, michele wrote: 

Hi, 
  i've my server with Qmail+Vpopmail+Qmailadmin, all works fine, but when i try 
  to change the password of a vpopmail user via Qmailadmin, i receive the 
  error:Error: Illegal username  > What's the username you're trying to change?


Re: [vchkpw] Qmailadmin return "Error: Illegal username" when changing password

2004-10-03 Thread Tom Collins
On Oct 2, 2004, at 12:51 PM, michele wrote:
Hi, i've my server with Qmail+Vpopmail+Qmailadmin, all works fine, but 
when i try to change the password of a vpopmail user via Qmailadmin, i 
receive the error:
Error: Illegal username 
What's the username you're trying to change?
--
Tom Collins  -  [EMAIL PROTECTED]
QmailAdmin: http://qmailadmin.sf.net/  Vpopmail: http://vpopmail.sf.net/
Info on the Sniffter hand-held Network Tester: http://sniffter.com/


Re: [vchkpw] qmailadmin question

2004-06-01 Thread Rick Widmer

Chris Miller wrote:
When I setup a user in qmailadmin and check the “Spam detection?” box, 
it adds “|preline /usr/local/bin/maildrop /etc/mailfilter” to their 
~/.qmail. This is great, except I need it to be something different. 
Where do I set what the Spam detection box adds to a user’s .qmail file?
At ./configure time:
   --enable-modify-spam
   --enable-spoam-command
see:
   ./configure --help | less



Re: [vchkpw] qmailadmin & valias ?

2004-05-26 Thread Tom Collins
On May 22, 2004, at 3:00 AM, master wrote:
Hi, i have added an alias with two email and when i try to remove one 
email
i get Error of files 1
and in my log i have :
Error: valias_remove() not implemented for non-SQL backends.

can t non sql remove alias (when there is more than 1 for  1 email ? )
QmailAdmin has special code to do that, but it hasn't been ported to 
vpopmail 5.4 yet.  If you use QmailAdmin, you can remove alias lines.

--
Tom Collins  -  [EMAIL PROTECTED]
QmailAdmin: http://qmailadmin.sf.net/  Vpopmail: http://vpopmail.sf.net/
Info on the Sniffter hand-held Network Tester: http://sniffter.com/


Re: [vchkpw] QmailAdmin compiling on x86-64

2004-05-11 Thread Patrick Donker






  how can I get it to build for x86-64 target?

I would start with mailing to [EMAIL PROTECTED]




Re: [vchkpw] qmailadmin: File permission error

2004-02-18 Thread Tom Collins
On Feb 18, 2004, at 4:17 AM, Rick Widmer wrote:
o Check the permissions and ownership of all the directores from the
Maildir of the users having problems all the way up to /.   The user
and/or group QmailAdmin is running as must have rwx for all 
directories.
You can try `chown -R vpopmail:vchkpw ~vpopmail/domains` to fix the 
permissions.

As Rick said, it could be the permissions on the qmailadmin binary, 
especially if this install is not cdb-based.  On cdb-based systems, you 
won't even be able to authenticate if qmailadmin doesn't have the 
correct permissions.

Here's a test program you can use:

#include 
#include 
#include 
#define TEST_FILE "/home/vpopmail/etc/vpopmail.mysql"

int main() {
uid_t   uid, euid;
FILE *f;
printf ("Content-Type: text/html\n\n");

uid = getuid();
euid = geteuid();
printf ("UID: %lueffective UID: %lu\n",
(unsigned long) uid, (unsigned long) euid);
f = fopen (TEST_FILE, "r");
if (f == NULL) {
printf ("Error: Can't open %s for reading.\n", 
TEST_FILE);
} else {
printf ("No permissions problems opening %s.\n", 
TEST_FILE);
fclose (f);
}
return 0;
}

Save it as permtest.c, then do:

gcc -o permtest permtest.c && chown vpopmail:vchkpw permtest && chmod 
06755 permtest

Copy it to your cgi-bin directory, then go to 
"http://your.server.name.here/cgi-bin/permtest";.

If it doesn't report the correct effective UID (it should match 
vpopmail's user number in /etc/passwd) then you have a problem.

Check that apache allows for suid programs to run, and that /etc/fstab 
doesn't have the nosuid option set for the mountpoint your web files 
are on.

--
Tom Collins  -  [EMAIL PROTECTED]
QmailAdmin: http://qmailadmin.sf.net/  Vpopmail: http://vpopmail.sf.net/
Info on the Sniffter handheld Network Tester: http://sniffter.com/


Re: [vchkpw] qmailadmin: File permission error

2004-02-18 Thread Rick Widmer


Thomas Madej wrote:

There is no such file. I tried logging in as different domain and i'm 
having the same problems. They, too, have no such file.
If the file is not being created, then there is a problem with
permissions or something else that does not allow the user QmailAdmin is
running as to create files.  There are two avenues of attack.
o Check the permissions and ownership of all the directores from the
Maildir of the users having problems all the way up to /.   The user
and/or group QmailAdmin is running as must have rwx for all directories.
o Check the permissions and ownership of QmailAdmin.  Mine is 06755
which is SUID vpopmail:vchkpw plus 755.
One thing to try is login (or su to) the user QmailAdmin runs as, cd to
a directory having a problem, and try creating a file.  If you get an
error message, so will QmailAdmin.
Rick




Re: [vchkpw] qmailadmin: File permission error

2004-02-18 Thread Thomas Madej
There is no such file. I tried logging in as different domain and i'm having the same problems. They, too, have no such file.

Thomas

On 17-Feb-04, at 6:35 PM, Tom Collins wrote:

On Feb 17, 2004, at 4:01 PM, Thomas Madej wrote:
I have qmailadmin install running for 6 months without problems. Somehow have this error: file permission error /var/vmail/domains/example.com/postmaster/Maildir/1077057747.qw
 i haven't changed anything within the filesystem, such as permission, locations, etc, that would cause such a problem. Has anyone experienced such a problem?

What are permissions on that file?  What happens if you delete it (which is OK, it's just a session file) and re-login?

--
Tom Collins  -  [EMAIL PROTECTED]
QmailAdmin: http://qmailadmin.sf.net/  Vpopmail: http://vpopmail.sf.net/ 
Info on the Sniffter handheld Network Tester: http://sniffter.com/



Re: [vchkpw] qmailadmin: File permission error

2004-02-17 Thread Tom Collins
On Feb 17, 2004, at 4:01 PM, Thomas Madej wrote:
I have qmailadmin install running for 6 months without problems. Somehow have this error: file permission error /var/vmail/domains/example.com/postmaster/Maildir/1077057747.qw
 i haven't changed anything within the filesystem, such as permission, locations, etc, that would cause such a problem. Has anyone experienced such a problem?

What are permissions on that file?  What happens if you delete it (which is OK, it's just a session file) and re-login?

--
Tom Collins  -  [EMAIL PROTECTED]
QmailAdmin: http://qmailadmin.sf.net/  Vpopmail: http://vpopmail.sf.net/ 
Info on the Sniffter handheld Network Tester: http://sniffter.com/



Re: [vchkpw] qmailadmin errors

2004-02-16 Thread Tom Collins
On Feb 16, 2004, at 11:10 AM, Girish wrote:
I am using RHL 9 , vpopmail 5.4.x
qmail admin 1.0.6
Please try qmailadmin 1.2.0.  It's better matched to vpopmail 5.4.x.

Also, if you're using a pre-release version of vpopmail 5.4.0, please 
upgrade to the final 5.4.0 release.

--
Tom Collins  -  [EMAIL PROTECTED]
QmailAdmin: http://qmailadmin.sf.net/  Vpopmail: http://vpopmail.sf.net/
Info on the Sniffter handheld Network Tester: http://sniffter.com/


Re: [vchkpw] qmailadmin errors

2004-02-16 Thread Girish
I am using RHL 9 , vpopmail 5.4.x
qmail admin 1.0.6



> Hello Girish,
>
> Monday, February 16, 2004, 9:48:49 AM, you wrote:
>
> G> while installing qmailadmin i get these errors
>
>
>
> G> gcc -I.   -g -O2 -c qmailadmin.c
> G> qmailadmin.c:29:22: vpopmail.h: No such file or directory
> G> qmailadmin.c:30:19: vauth.h: No such file or directory
> G> qmailadmin.c: In function `main':
> G> qmailadmin.c:133: warning: assignment makes pointer from integer
without a
> G> cast
> G> qmailadmin.c:210: warning: assignment makes pointer from integer
without a
> G> cast
> G> qmailadmin.c:218: dereferencing pointer to incomplete type
> G> qmailadmin.c:222: dereferencing pointer to incomplete type
> G> make[2]: *** [qmailadmin.o] Error 1
> G> make[2]: Leaving directory `/usr/src/qmail/qmailadmin-1.0.6'
> G> make[1]: *** [all-recursive] Error 1
> G> make[1]: Leaving directory `/usr/src/qmail/qmailadmin-1.0.6'
> G> make: *** [all-recursive-am] Error 2
>
> G> any one can help me
>
>
> Hi,
>
> Which version of RedHat are you using??
>
> regards,
> Krishna
>
> Krishna Shekhar, RHCE
> Network/Systems Engineer,
> Spectranet BroadBand
>
>
> --
>  regards,
>  Krishna
mailto:[EMAIL PROTECTED]
>



Re: [vchkpw] qmailadmin errors

2004-02-16 Thread Jeremy Kitchen
http://scriptkitchen.com/godkills.jpg <-- please, think of the kittens

On Mon, 2004-02-16 at 12:03, Girish wrote:
> I tried to install qmailadmin as root
> 
> and vpopmail is in /home/vpopmail/ dir..
> 
> i wonder what happen..
> 
> and when i search for vpopmail.h it exist there ..

what is the home directory for the vpopmail user?

grep vpopmail /etc/passwd

-Jeremy

-- 
Jeremy Kitchen
Systems Administrator
[EMAIL PROTECTED]
Kitchen @ #qmail on EFNet - Join the party!
.
Inter7 Internet Technologies, Inc.
www.inter7.com
866.528.3530 toll free
847.492.0470 int'l
847.492.0632 fax
GNUPG key ID: 93BDD6CE



Re: [vchkpw] qmailadmin errors

2004-02-16 Thread Girish
I tried to install qmailadmin as root

and vpopmail is in /home/vpopmail/ dir..

i wonder what happen..

and when i search for vpopmail.h it exist there ..

Girish

> On Feb 16, 2004, at 10:48 AM, Girish wrote:
> > gcc -I.   -g -O2 -c qmailadmin.c
> > qmailadmin.c:29:22: vpopmail.h: No such file or directory
> > qmailadmin.c:30:19: vauth.h: No such file or directory
> 
> When you configured qmailadmin, you didn't tell it where vpopmail was 
> installed.
> 
> Make sure you configure and install qmailadmin as root.  If vpopmail 
> isn't at /home/vpopmail, you'll need to tell qmailadmin where it is 
> (./configure --enable-vpopmaildir=DIR).
> 
> --
> Tom Collins  -  [EMAIL PROTECTED]
> QmailAdmin: http://qmailadmin.sf.net/  Vpopmail: http://vpopmail.sf.net/
> Info on the Sniffter handheld Network Tester: http://sniffter.com/
> 


Re: [vchkpw] qmailadmin errors

2004-02-16 Thread Krishna
Hello Girish,

Monday, February 16, 2004, 9:48:49 AM, you wrote:

G> while installing qmailadmin i get these errors



G> gcc -I.   -g -O2 -c qmailadmin.c
G> qmailadmin.c:29:22: vpopmail.h: No such file or directory
G> qmailadmin.c:30:19: vauth.h: No such file or directory
G> qmailadmin.c: In function `main':
G> qmailadmin.c:133: warning: assignment makes pointer from integer without a
G> cast
G> qmailadmin.c:210: warning: assignment makes pointer from integer without a
G> cast
G> qmailadmin.c:218: dereferencing pointer to incomplete type
G> qmailadmin.c:222: dereferencing pointer to incomplete type
G> make[2]: *** [qmailadmin.o] Error 1
G> make[2]: Leaving directory `/usr/src/qmail/qmailadmin-1.0.6'
G> make[1]: *** [all-recursive] Error 1
G> make[1]: Leaving directory `/usr/src/qmail/qmailadmin-1.0.6'
G> make: *** [all-recursive-am] Error 2

G> any one can help me


Hi,

Which version of RedHat are you using??

regards,
Krishna

Krishna Shekhar, RHCE
Network/Systems Engineer,
Spectranet BroadBand


-- 
 regards,
 Krishnamailto:[EMAIL PROTECTED]



Re: [vchkpw] qmailadmin errors

2004-02-16 Thread Tom Collins
On Feb 16, 2004, at 10:48 AM, Girish wrote:
gcc -I.   -g -O2 -c qmailadmin.c
qmailadmin.c:29:22: vpopmail.h: No such file or directory
qmailadmin.c:30:19: vauth.h: No such file or directory
When you configured qmailadmin, you didn't tell it where vpopmail was 
installed.

Make sure you configure and install qmailadmin as root.  If vpopmail 
isn't at /home/vpopmail, you'll need to tell qmailadmin where it is 
(./configure --enable-vpopmaildir=DIR).

--
Tom Collins  -  [EMAIL PROTECTED]
QmailAdmin: http://qmailadmin.sf.net/  Vpopmail: http://vpopmail.sf.net/
Info on the Sniffter handheld Network Tester: http://sniffter.com/


Re: [vchkpw] qmailadmin invlid login

2003-12-29 Thread Tom Collins
On Dec 29, 2003, at 8:55 PM, DOV wrote:
HOWEVER:
qmailadmin stopped allowing login... it worked before (in one of the 
many iterations...), and now returns with invalid login... have even 
tried setting this up with cgiwrap but results remain negative...
In rc1, `make install-strip` doesn't install with the correct 
permissions.  Try `make install` instead or wait until the rc2 release 
which I'll be making in the next few days.

--
Tom Collins  -  [EMAIL PROTECTED]
QmailAdmin: http://qmailadmin.sf.net/  Vpopmail: http://vpopmail.sf.net/
Info on the Sniffter hand-held Network Tester: http://sniffter.com/


RE: [vchkpw] qmailadmin

2003-11-27 Thread Brad Hughes
Sorry!, I typed up that email pretty fast... here is some diagnosis data...

I ran configure with:
--enable-mysql=y  --enable-rebuild-tcpserver-file=n
--enable-defaultquota=1S,1C
-enable-roaming-users=y --enable-learn-passwords=y --enable-logging=p
--enable-domainquotas=y


   vpopmail 5.3.24
Current settings
---
vpopmail directory = /usr/local/vpopmail
   uid = 89
   gid = 89
  ip alias = OFF --enable-ip-alias-domains=n (default)
address extentions = OFF --enable-qmail-ext=n (default)
rebuild tcpserver file = NO --enable-rebuild-tcpserver-file=n
 roaming users = ON  --enable-roaming-users=y
tcpserver file = /usr/local/vpopmail/etc/tcp.smtp
open_smtp file = /usr/local/vpopmail/etc/open-smtp
user quota = 1S,1C -enable-hardquota=1S,1C
 domain quotas = ON  --enable-domainquotas=y
   auth module = mysql --enable-mysql=y
 mysql replication = OFF --enable-mysql-replication=n (default)
table optimization = many domains --enable-many-domains=y (default)
  system passwords = OFF --enable-passwd=n (default)
  file locking = ON  --enable-file-locking=y (default)
 file sync = OFF --enable-file-sync=n disable vdelivermail fsync
 (default)
 make seekable = ON  --enable-make-seekable=y (default)
  auth logging = ON  --enable-auth-logging=y (default)
 mysql logging = OFF --enable-mysql-logging=n (default)
  clear passwd = ON  --enable-clear-passwd=y (default)
 users big dir = ON  --enable-users-big-dir=y (default)
 valias processing = OFF --enable-valias=n
  mysql limits = OFF --enable-mysql-limits=n (default)
pop syslog = show failure attempts with clear text password
 --enable-logging=p
  auth inc = -I/usr/local/include/mysql
  auth lib = -L/usr/local/lib/mysql  -lmysqlclient -lz

I'm running FreeBSD 5.1-RELEASE on an AMD 1800+/256mb ram/40gb Seagate hd...
Its also a webserver... 

qmailadmin IS:
/usr/local/www/koolscooby.net/mail/cgi-bin/qmailadmin/qmailadmin

Apache *IS* setup to use /usr/local/www/koolscooby.net/mail/cgi-bin/ as
mail.koolscooby.net's ScriptAlias... (I had to fix that first... I used to
have the problem that the images wouldn't show up on the qmailadmin page,
and nothing would work, its because I forgot to put my scriptalias in my
virtualdomain directive in apache :)
Thanks much!!!

Brad Hughes
_kS
btw... sorry on the last one, I had hit the wrong button (reply instead of
reply to all, so it didn't get sent out to the list)

-Original Message-
From: Juan Hernandez [mailto:[EMAIL PROTECTED] 
Sent: Thursday, November 27, 2003 11:45 AM
To: [EMAIL PROTECTED]
Subject: Re: [vchkpw] qmailadmin

You need to be more specific pal... what's your vpopmail configuration??
which options did you use with ./configure??

Juan

On Thu, 2003-11-27 at 12:41, Brad Hughes wrote:
> Hey again,
> 
> I did a install of qmailadmin to my /cgi-bin/ directory, it does
> execute the executable and brings up the user/pass/domain box, I put
> in postmaster, my domain, and my password, but it says its invalid.
> I'm using a mysql backend for qmail if this matters. I also went into
> the db and checked the password, it is what I had originally typed in.
> thanks in advance
> 
>  
> 
> Happy thanksgiving to everyone out there!
> 
> :)
> 
>  
> 
> Brad Hughes
> 
> _kS
> 
> 







Re: [vchkpw] qmailadmin

2003-11-27 Thread Juan Hernandez
You need to be more specific pal... what's your vpopmail configuration??
which options did you use with ./configure??

Juan

On Thu, 2003-11-27 at 12:41, Brad Hughes wrote:
> Hey again,
> 
> I did a install of qmailadmin to my /cgi-bin/ directory, it does
> execute the executable and brings up the user/pass/domain box, I put
> in postmaster, my domain, and my password, but it says its invalidâ
> Iâm using a mysql backend for qmail if this mattersâ I also went into
> the db and checked the password, it is what I had originally typed inâ
> thanks in advance
> 
>  
> 
> Happy thanksgiving to everyone out there!
> 
> :)
> 
>  
> 
> Brad Hughes
> 
> _kS
> 
> 




Re: [vchkpw] QmailAdmin "make error"

2003-11-26 Thread Tom Collins
On Wednesday, November 26, 2003, at 10:43  AM, martin wrote:
 I am running RH 9,, qmail-1.0.3... vpopmail-5.2.1... 
autorespond-2.0.2... and ezmlm-0.53-idx-0.41. when running 
"make" i get the following 
You can upgrade to 5.2.2 by downloading the tarball from SourceForge: 
.

--
Tom Collins  -  [EMAIL PROTECTED]
QmailAdmin: http://qmailadmin.sf.net/  Vpopmail: http://vpopmail.sf.net/
Info on the Sniffter hand-held Network Tester: http://sniffter.com/



Re: [vchkpw] QmailAdmin "make error"

2003-11-26 Thread martin


Tom Collins wrote:

On Wednesday, November 26, 2003, at 08:53  AM, martin wrote:

 I am running RH 9,, qmail-1.0.3... vpopmail-5.2.1... 
autorespond-2.0.2... and ezmlm-0.53-idx-0.41. when running "make" 
i get the following 


[snip]

vpopmail.h & and vauth.h   are in  /home/qmail/include...  I 
checked some FAQ's and all the anwers were that "vpopmail was not 
installed" hoever..this is not the case and it is up and running.  I 
read the INSTALL and don't see where any of the flag pertain to the 
aboveam I seriously over looking something?  Please advise.


When you configured qmailadmin, what did it say for the vpopmail dir 
in "Current Settings"?  Make sure that the home directory in your 
/etc/passwd file for the vpopmail user is /home/qmail.

If you look at ~vpopmail/etc, are there inc_deps and lib_deps files?  
Is there anything in them?

Try going into your vpopmail source dir and running `./config.stats 
--recheck`, then do the same thing in the qmailadmin source 
directory.  Try building qmailadmin, and it should hopefully work at 
that point.

Old versions of vpopmail had a bug where inc_deps and lib_deps 
wouldn't get built if it was the first time vpopmail was getting 
installed.

--
Tom Collins  -  [EMAIL PROTECTED]
QmailAdmin: http://qmailadmin.sf.net/  Vpopmail: http://vpopmail.sf.net/
Info on the Sniffter hand-held Network Tester: http://sniffter.com/ 


Yepthose files are not in there... I tried running `./config.stats 
--recheck` in the vpopmail src dir and it is saying that there is no 
such file or dir please forgive the serious n00b that I am, as I 
have lead a windoz sheltered life and am converting over to the real 
world.  If I were to upgrade to the next version of vpopmail...is it 
just a simple patch?  or do I have to install the whole new version and 
link everything?

I appreciate all the help!!!





.






Re: [vchkpw] QmailAdmin "make error"

2003-11-26 Thread Tom Collins
On Wednesday, November 26, 2003, at 08:53  AM, martin wrote:
 I am running RH 9,, qmail-1.0.3... vpopmail-5.2.1... 
autorespond-2.0.2... and ezmlm-0.53-idx-0.41. when running "make" 
i get the following 
[snip]

vpopmail.h & and vauth.h   are in  /home/qmail/include...  I 
checked some FAQ's and all the anwers were that "vpopmail was not 
installed" hoever..this is not the case and it is up and running.  I 
read the INSTALL and don't see where any of the flag pertain to the 
aboveam I seriously over looking something?  Please advise.
When you configured qmailadmin, what did it say for the vpopmail dir in 
"Current Settings"?  Make sure that the home directory in your 
/etc/passwd file for the vpopmail user is /home/qmail.

If you look at ~vpopmail/etc, are there inc_deps and lib_deps files?  
Is there anything in them?

Try going into your vpopmail source dir and running `./config.stats 
--recheck`, then do the same thing in the qmailadmin source directory.  
Try building qmailadmin, and it should hopefully work at that point.

Old versions of vpopmail had a bug where inc_deps and lib_deps wouldn't 
get built if it was the first time vpopmail was getting installed.

--
Tom Collins  -  [EMAIL PROTECTED]
QmailAdmin: http://qmailadmin.sf.net/  Vpopmail: http://vpopmail.sf.net/
Info on the Sniffter hand-held Network Tester: http://sniffter.com/



Re: [vchkpw] QmailAdmin "make error"

2003-11-26 Thread Juan Hernandez
Did you run the patches for Glib?? RH9 must be patched in order to have
everything working

Juan

On Wed, 2003-11-26 at 11:53, martin wrote:
>  Greetings All -
> 
>   I am running RH 9,, qmail-1.0.3... vpopmail-5.2.1... 
>  autorespond-2.0.2... and ezmlm-0.53-idx-0.41. when running "make" i 
> get the following 
> 
> [EMAIL PROTECTED] qmailadmin-1.0.6]# make
> make  all-recursive
> make[1]: Entering directory `/usr/local/src/qmailadmin-1.0.6'
> make[2]: Entering directory `/usr/local/src/qmailadmin-1.0.6'
> gcc -I.   -g -O2 -c qmailadmin.c
> qmailadmin.c:29:22: vpopmail.h: No such file or directory
> qmailadmin.c:30:19: vauth.h: No such file or directory
> make[2]: *** [qmailadmin.o] Error 1
> make[2]: Leaving directory `/usr/local/src/qmailadmin-1.0.6'
> make[1]: *** [all-recursive] Error 1
> make[1]: Leaving directory `/usr/local/src/qmailadmin-1.0.6'
> make: *** [all-recursive-am] Error 2
> 
> --
> 
> vpopmail.h & and vauth.h   are in  /home/qmail/include...  I checked 
> some FAQ's and all the anwers were that "vpopmail was not installed" 
> hoever..this is not the case and it is up and running.  I read the 
> INSTALL and don't see where any of the flag pertain to the aboveam I 
> seriously over looking something?  Please advise.
> 
> Best Regards
> Martin
> 
> 




Re: [vchkpw] qmailadmin

2003-11-26 Thread Cristiano Deana
Il giorno Monday 24 November 2003 21:06, Duane Stark mi scriveva:

> When I try and login with qmailadmin, it says invalid username / password..

Maybe ownership or permission of cgi-bin/qmailadmin/qmailadmin are wrong?

# ls -l cgi-bin/qmailadmin/qmailadmin
-r-sr-sr-x  1 vpopmail  vchkpw  125600 Nov 20 17:35 
cgi-bins/qmailadmin/qmailadmin
-- 
Cristiano Deana - FreeCRIS
"Ho iniziato a usare FreeBSD perche' m$ usava me. ed e' spiacevole"
pgp public key: http://freecris.bmm.it/cris.asc
in irc su: irc.azzurra.org #freebsd-it



RE: [vchkpw] Qmailadmin 1.06 not reading my email accounts

2003-11-12 Thread Dan Didier
Thanks for the input, it is MUCH appreciated.

Dan


> -Original Message-
> From: Tom Collins [mailto:[EMAIL PROTECTED] 
> Sent: Wednesday, November 12, 2003 4:07 PM
> To: vpopmail list
> Subject: Re: [vchkpw] Qmailadmin 1.06 not reading my email accounts
> 
> 
> On Thursday, November 13, 2003, at 04:44  AM, Dan Didier wrote:
> > I am running vpopmail 5.0.1 and installed qmailadmin 1.06
> >
> > I can't see any of my email addresses, but I can see all 
> the aliases 
> > with qmailadmin. Any info on what the problem could be?
> 
> Upgrade to 5.2.2, it includes patches that should correct 
> your problem.
> 
> Also, make sure you re-compile qmailadmin after compiling and 
> installing vpopmail.
> 
> --
> Tom Collins  -  [EMAIL PROTECTED]
> Note: The Tom Logic offices will be closed through November 18.
> QmailAdmin: http://qmailadmin.sf.net/  Vpopmail: 
http://vpopmail.sf.net/ Info on the Sniffter hand-held Network Tester:
http://sniffter.com/






Re: [vchkpw] Qmailadmin 1.06 not reading my email accounts

2003-11-12 Thread Tom Collins
On Thursday, November 13, 2003, at 04:44  AM, Dan Didier wrote:
I am running vpopmail 5.0.1 and installed qmailadmin 1.06

I can't see any of my email addresses, but I can see all the aliases
with qmailadmin.
Any info on what the problem could be?
Upgrade to 5.2.2, it includes patches that should correct your problem.

Also, make sure you re-compile qmailadmin after compiling and 
installing vpopmail.

--
Tom Collins  -  [EMAIL PROTECTED]
Note: The Tom Logic offices will be closed through November 18.
QmailAdmin: http://qmailadmin.sf.net/  Vpopmail: http://vpopmail.sf.net/
Info on the Sniffter hand-held Network Tester: http://sniffter.com/



Re: [vchkpw] qmailadmin version

2003-11-06 Thread Michael Bowe
> > >>i recently install qmailadmin-stable (and latest devel)  with
> > >>vpopmail-5.3.29 with postgresql auth,
> > >>instalation work fine, but qmailadmin not do his job. , i can login
with
> > >>postmaster account, but every link that i click, return with empty
page.
> > >>and error from apache;

> I have duplicated that fault on my test server
> I have an idea where it is coming from
>
> Hopefully I can post a patch soon.

OK, I have found the bug.

It is in the vauth_getall() function

I have opened tracker on sourceforge for it [837139]

Patch to be uploaded shortly.

Michael.




Re: [vchkpw] qmailadmin version

2003-11-06 Thread Tom Collins
On Wednesday, November 5, 2003, at 11:54  AM, Remo Mattei wrote:
I have problem once I install qmailadmin on a version that is higher
than .16 any suggestions? I do can log in but I cannot see anything 
else
other than logout in the menu list any suggestions?
I made changes in 1.0.28 that might be related to that problem, so 
please try it (download from qmailadmin.sf.net) and let us know if you 
continue to have problems.

--
Tom Collins  -  [EMAIL PROTECTED]
Note: The Tom Logic offices will be closed October 23 to November 18.
QmailAdmin: http://qmailadmin.sf.net/  Vpopmail: http://vpopmail.sf.net/
Info on the Sniffter hand-held Network Tester: http://sniffter.com/



Re: [vchkpw] qmailadmin and apache suexec

2003-11-05 Thread Ken Jones
On Wednesday 05 November 2003 12:09 pm, Don Walters wrote:
> I had qmailadmin installed and working great.  Today, I setup my apache
> server to use suexec.  I noticed my qmailadmin stopped working.  After
> looking through the archives, I found a post where someone mentioned that I
> needed to change the owner, group, and permissions on the qmailadmin file.
> I made them the same user and group as the suexec parameter I specified in
> apache.  Now it is working fine.  My question is... is that OK?  Will I
> mess anything up by running it as a user other than vpopmail.vchkpw?

Basicly qmailadmin needs to be able to create files with
the right ownership. If all the domains are owned by vpopmail:vchkpw
then qmailadmin must either run as that user or be able to switch
the effective uid/gid (uses seteuid() and setegid()).
My guess is your setup won't work. You can easily check
by adding email accounts and forwards. If they work and
the permissions on the files are right, you are set.

Ken Jones




Re: [vchkpw] qmailadmin version

2003-11-04 Thread Remo Mattei
I have problem once I install qmailadmin on a version that is higher
than .16 any suggestions? I do can log in but I cannot see anything else
other than logout in the menu list any suggestions?

Thanks.

Remo
On Fri, 2003-10-31 at 20:12, Muhammad Reza wrote:
> Michael Bowe wrote:
> 
> >- Original Message - 
> >From: "Muhammad Reza" <[EMAIL PROTECTED]>
> >To: <[EMAIL PROTECTED]>
> >Sent: Saturday, November 01, 2003 2:22 PM
> >Subject: [vchkpw] qmailadmin version
> >
> >
> >  
> >
> >>dear list
> >>i recently install qmailadmin-stable (and latest devel)  with
> >>vpopmail-5.3.29 with postgresql auth,
> >>instalation work fine, but qmailadmin not do his job. , i can login with
> >>postmaster account, but every link that i click, return with empty page.
> >>and error from apache;
> >>vauth_getpw: failed select: SELECT pw_name, pw_passwd, pw_uid, pw_gid,
> >>pw_gecos, pw_dir, pw_shell , pw_clear_passwd FROM users WHERE pw_name =
> >>'' : ERROR:  Relation "users" does not exist
> >>
> >>
> >
> >Mmmm, that seems a bit suspect.
> >
> >Notice how the pw_name is blank in the SQL string
> >
> >I have recently been doing a bit of tinkering with the Postgres module, to
> >get some documentation going as per my existing MySQL docs at
> >http://www.pipeline.com.au/staff/mbowe/isp/vpopmail-mysql.htm
> >
> >I have found a few bugs/niggles in the vpopmail postgres code which I will
> >be posting updates for shortly. While I am at it, I will see if I can find
> >out what is causing your bug as well.
> >
> >Michael.
> >  
> >
> 
> thnaks Michael.
> 
> my installation step is part of  your documentation except for the 
> vpopmail authentication and webmail imap client , my imap client is 
> OpenGroupware that use postgresql as its database, and i dont want to 
> have 2 different SQL in my server.
> 
> regards
> reza
> 
> >
> >
> >  
> >
> 
> 
> 



Re: [vchkpw] qmailadmin version

2003-11-01 Thread Michael Bowe
> >>i recently install qmailadmin-stable (and latest devel)  with
> >>vpopmail-5.3.29 with postgresql auth,
> >>instalation work fine, but qmailadmin not do his job. , i can login with
> >>postmaster account, but every link that i click, return with empty page.
> >>and error from apache;
> >>vauth_getpw: failed select: SELECT pw_name, pw_passwd, pw_uid, pw_gid,
> >>pw_gecos, pw_dir, pw_shell , pw_clear_passwd FROM users WHERE pw_name =
> >>'' : ERROR:  Relation "users" does not exist
> >>
> >>
> >
> >Mmmm, that seems a bit suspect.
> >
> >Notice how the pw_name is blank in the SQL string
> >
> >I have recently been doing a bit of tinkering with the Postgres module,
to
> >get some documentation going as per my existing MySQL docs at
> >http://www.pipeline.com.au/staff/mbowe/isp/vpopmail-mysql.htm
> >
> >I have found a few bugs/niggles in the vpopmail postgres code which I
will
> >be posting updates for shortly. While I am at it, I will see if I can
find
> >out what is causing your bug as well.

I have duplicated that fault on my test server
I have an idea where it is coming from

Hopefully I can post a patch soon.

Michael.




Re: [vchkpw] qmailadmin version

2003-10-31 Thread Muhammad Reza
Michael Bowe wrote:

- Original Message - 
From: "Muhammad Reza" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Saturday, November 01, 2003 2:22 PM
Subject: [vchkpw] qmailadmin version

 

dear list
i recently install qmailadmin-stable (and latest devel)  with
vpopmail-5.3.29 with postgresql auth,
instalation work fine, but qmailadmin not do his job. , i can login with
postmaster account, but every link that i click, return with empty page.
and error from apache;
vauth_getpw: failed select: SELECT pw_name, pw_passwd, pw_uid, pw_gid,
pw_gecos, pw_dir, pw_shell , pw_clear_passwd FROM users WHERE pw_name =
'' : ERROR:  Relation "users" does not exist
   

Mmmm, that seems a bit suspect.

Notice how the pw_name is blank in the SQL string

I have recently been doing a bit of tinkering with the Postgres module, to
get some documentation going as per my existing MySQL docs at
http://www.pipeline.com.au/staff/mbowe/isp/vpopmail-mysql.htm
I have found a few bugs/niggles in the vpopmail postgres code which I will
be posting updates for shortly. While I am at it, I will see if I can find
out what is causing your bug as well.
Michael.
 

thnaks Michael.

my installation step is part of  your documentation except for the 
vpopmail authentication and webmail imap client , my imap client is 
OpenGroupware that use postgresql as its database, and i dont want to 
have 2 different SQL in my server.

regards
reza


 






Re: [vchkpw] qmailadmin version

2003-10-31 Thread Michael Bowe


- Original Message - 
From: "Muhammad Reza" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Saturday, November 01, 2003 2:22 PM
Subject: [vchkpw] qmailadmin version


> dear list
> i recently install qmailadmin-stable (and latest devel)  with
> vpopmail-5.3.29 with postgresql auth,
> instalation work fine, but qmailadmin not do his job. , i can login with
> postmaster account, but every link that i click, return with empty page.
> and error from apache;
> vauth_getpw: failed select: SELECT pw_name, pw_passwd, pw_uid, pw_gid,
> pw_gecos, pw_dir, pw_shell , pw_clear_passwd FROM users WHERE pw_name =
> '' : ERROR:  Relation "users" does not exist

Mmmm, that seems a bit suspect.

Notice how the pw_name is blank in the SQL string

I have recently been doing a bit of tinkering with the Postgres module, to
get some documentation going as per my existing MySQL docs at
http://www.pipeline.com.au/staff/mbowe/isp/vpopmail-mysql.htm

I have found a few bugs/niggles in the vpopmail postgres code which I will
be posting updates for shortly. While I am at it, I will see if I can find
out what is causing your bug as well.

Michael.




Re: [vchkpw] qmailadmin-1.0.27 error on rh7.3

2003-10-09 Thread Tom Collins
On Wednesday, October 8, 2003, at 11:46  PM, Jochen Schug wrote:
What version of vpopmail are you using? From your previous post, I 
asume
5.2.1 or 5.2.2... Read the requirements of the recent qmailadmin 
release
- you'll need at least 5.3.19 IIRC.
That's correct.  Versions of QmailAdmin from at least 1.0.19 require 
vpopmail 5.3.19 or later (for the vlimits code).

--
Tom Collins  -  [EMAIL PROTECTED]
Note: The Tom Logic offices will be closed October 23 to November 18.
QmailAdmin: http://qmailadmin.sf.net/  Vpopmail: http://vpopmail.sf.net/
Info on the Sniffter hand-held Network Tester: http://sniffter.com/



Re: [vchkpw] qmailadmin-1.0.27 error on rh7.3

2003-10-08 Thread Jochen Schug
[EMAIL PROTECTED] wrote:

I'm trying to compile qmailadmin-1.0.27 and I'm getting the following error:

gcc -I. -I/usr/local/vpopmail/include  -g -O2 -c qmailadmin.c
qmailadmin.c:32:21: vlimits.h: No such file or directory
qmailadmin.c:67: error: storage size of `Limits' isn't known
make: *** [qmailadmin.o] Error 1
I'm using gcc 3.3.1 on a redhat 7.3 box.

Here are my configure options:

./configure --enable-vpopmaildir=/usr/local/vpopmail
--enable-htmldir=/usr/local/www/webapps/qmailadmin
--enable-cgibindir=/usr/local/www/webapps/qmailadmin/cgi-bin
--enable-qmaildir=/var/qmail --enable-cgipath=/cgi-bin/qmailadmin
--enable-imagedir=/usr/local/www/webapps/qmailadmin/images
--enable-imageurl=/images --enable-autoresponder-bin --enable-ezmlmdir=/usr/bin
--enable-domain-autofill=Y --enable-modify-spam=Y
--enable-spam-command="|/usr/local/bin/maildrop /usr/local/vpopmail/spamfilter"
Btw, I can compile 1.0.6 just fine, but I wanted the spam-command option.

Any ideas?
 

What version of vpopmail are you using? From your previous post, I asume
5.2.1 or 5.2.2... Read the requirements of the recent qmailadmin release
- you'll need at least 5.3.19 IIRC.
Regards
Jochen




Re: [vchkpw] qmailadmin

2003-08-10 Thread Tom Collins
On Saturday, August 9, 2003, at 08:23  PM, John Johnson wrote:
 I have noticed in the last devel version of qmailadmin that it will remove
the program delivery lines for tmda if I set it up because of some changes
to the code. Is there a configure option I can use to disable this?

Not yet, but it's high on our to do list.  Unfortunately, the code that reads and writes a user's .qmail file is in need of a major overhaul.

Also note that qmailadmin has it's own list.  Send email to [EMAIL PROTECTED]

--
Tom Collins
[EMAIL PROTECTED]
http://sniffter.com/ - info on the Sniffter hand-held Network Tester


Re: [vchkpw] QmailAdmin New Look and Feel

2003-08-03 Thread Raboo Treed
can't you post an example iframe thingy, for us mortals that doesn't know
how to code php?


- Original Message - 
From: "Justin Michael Couto" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>;
<[EMAIL PROTECTED]>
Sent: Friday, August 01, 2003 11:28 PM
Subject: [vchkpw] QmailAdmin New Look and Feel


> Hello Everyone,
>
> Due to many requests, I have posted our patched New Look & Feel for
> qmailadmin version 1.0.23 source on our website for download.
>
> Initially I had just the patched files on the site, but I have had an
> overwhelming amount of request from people that would like the already
> patched version so they wouldn't have to find the 1.0.23 version and
> then patch it themselves.
>
> The site has instruction on it.
>
> I still have the patched files for download as well along with our
> squirrelmail them that was also requested by many.
>
> As soon as the project goes to the next version and all of the html is
> moved from the sources into a template system, we will upgrade our stuff
> to work in the new system.  At that time will fix the multi language
> problem with the images.
>
> Thanks all for you support and praise on the new look.  These files can
> be downloaded at:
>
> http://www.somnioworld.com/qmailadmin.php
>
> Thank you,
>
> Justin C.
>
>




Re: [vchkpw] [qmailadmin] aliases to bitbucket

2003-07-16 Thread Peter Palmreuther
Hi Tom,

On Tue, 15 Jul 2003 10:15:51 -0700 Tom Collins wrote:

> It might be helpful to add another program (vstoremail?) to the 
> vpopmail distribution that would accept a message in STDIN and save it 
> to the Maildir specified as the first parameter.  Then it would be 
> possible to have entries in your .qmail file like
>
> |/usr/local/bin/spamc | /home/vpopmail/bin/vstoremail 
> /home/vpopmail/domains/example.com/fred/Maildir/

This program already exists, albeit it's not part of vpopmail.

http://www.superscript.com/qtools/intro.html

look for 'tomaildir'.

Quote useful and spares invoking one of the "monsters" "maildrop" or
"procmail", if one does not need the filtering capabilities they offer,
but only a program to deliver from a STDOUT-pipe to a maildir structure.
-- 
Ciao,
 Pit



Re: [vchkpw] Qmailadmin 1.0.21 & antispam

2003-06-09 Thread Jeff Hedlund
Mike Fabricius wrote:
OK I've answered my own question. Just set the catchall to 'remote' with
the local address. Job done.
And assuming my patch for vpopmail goes through for the next version, a 
Maildir path in the catchall will also parse that user's .qmail file.

But your work-around works as well!

Jeff




Re: [vchkpw] Qmailadmin 1.0.21 & antispam

2003-06-09 Thread Mike Fabricius
OK I've answered my own question. Just set the catchall to 'remote' with
the local address. Job done.



On Mon, 2003-06-09 at 12:54, Mike Fabricius wrote:
> Hi everyone,
> 
> I've installed the new qmailadmin and I'm using it with a .qmail file
> for each user that contains |maildrop mailfilter.The mailfilter file
> contains 
> 
> xfilter "/usr/bin/spamc -f -u [EMAIL PROTECTED]"
> 
> This works well even when an alias has been used as the alias .qmail
> file now contains a full address. However, it still won't work with a
> domain catchall.
> 
> Even though .qmail-default for the domain contains only the path to the
> catchall user's directory, the message is delivered directly to the
> Maildir and the user's .qmail file is not read and there is therefore no
> filtering. Does anyone have any ideas how I can alter vpopmail to
> deliver to the user's directory?
> 
> Thanks,
> 
> Mike
> 
> 
> 




Re: [vchkpw] qmailadmin - premature end of script header

2003-02-08 Thread Ajai Khattri
GoodnGo.de (R) Zentrale wrote:


Ich get the "Internal Server Error" messages
 
Apache log file said: "Premature end of script headers: 
/home/wsrv001/cgi-bin/qmailadmin"
 
How can I get it to run orderly?

Look in your Apache error log to see what the problem is.

--
Aj.
Systems Administrator / Developer





Re: [vchkpw] Qmailadmin feature request

2003-02-06 Thread Peter Palmreuther
Hi Andrew,

On Thu, 6 Feb 2003 11:02:36 -0500 Andrew Kohlsmith
<[EMAIL PROTECTED]> wrote:

>> What I would like to see is a update made to the qmail smtp daemon
>> so it will  look up the email account and return a "failure 500" message.
>> Then by default, the email addresses that don't match would be
>> failed and "hopefully" cleaned from the bulk mail lists.

>  There already is a "badrcptto" patch for qmail.  I have it in my mail
>  server, along with TLS, some mime bounce fixes and so on.  I believe it is
>  located at http://patch.be/qmail/badrcptto.html.

There's one I prefer over this:

http://www.unixpimps.org/software/qregex/index.html

Allows regular expressions on badmailfrom and badmailto.

but as this ain't the qmail list we should stop discussing only qmail
patches that have no relation to vpopmail except "we all as vpopmail
users like them" :-)
-- 
Peter




Re: [vchkpw] qmailadmin probs when configure

2003-01-22 Thread dWi saSonO b
On Wed, 22 Jan 2003 17:59:10 +0100
Tobias Åman <[EMAIL PROTECTED]> wrote:

> I have installed the latest qmail and the latest vpopmail stable
> but now i installed the dev version of vpopmail and i worke better
> 
> /Tobias
> - Original Message -
> From: "Clayton Weise" <[EMAIL PROTECTED]>
> To: "Tobias Åman" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
> Sent: Wednesday, January 22, 2003 4:45 PM
> Subject: RE: [vchkpw] qmailadmin probs when configure
> 
> 
> > This is probably better for the qmailadmin list.  But chances are you
> > installed an older version of vpopmail.  What version of vpopmail do you
> > have installed, and what version of qmailadmin are you trying to install?
> >
> > -Original Message-
> > From: Tobias Åman [mailto:[EMAIL PROTECTED]]
> > Sent: Wednesday, January 22, 2003 2:13 AM
> > To: [EMAIL PROTECTED]
> > Subject: [vchkpw] qmailadmin probs when configure
> >
> >
> > Hi!
> >
> > I have now installed vpopmail with mysql support from scratch and followed
> a
> > very good guide
> > and it works super nice.
> >
> > But now i´m trying to install the qmailadmin but under the configure
> process
> > it says
> >
> > cat: /home/vpopmail/etc/inc_deps: No such file or directory
> > cat: /home/vpopmail/etc/lib_deps: No such file or directory
> >
> > i configure with these options
> >
> >
> ./configure --enable-htmldir=/var/www/htdocs --enable-cgibindir=/var/www/cgi
> > -bin --enable-maxusersperpage=12 --enable-ma
> >
> xaliasesperpage=12 --enable-no-cache=y --enable-ezmlmdir=none --enable-vpopu
> > ser=vpopmail --enable-vpopgroup=vchkpw
> >
> > and when i try to compile i get errors like
> >
> > gcc -I.   -g -O2 -c qmailadmin.c
> > qmailadmin.c:29: vpopmail.h: No such file or directory
> > qmailadmin.c:30: vauth.h: No such file or directory
> >
> > i have searched tha archives but haven´t found a solution yet.. someone
> who
> > has these files or knows how to
> > correct these errors ?
> >
> > Regards Tobias
> >
> >
> >
> 
> 
> 

under vpopmail 5.2.1 these two file create after running configure
/home/vpopmail/etc/inc_deps
/home/vpopmail/etc/lib_deps


-- 
thx
onOs




Re: [vchkpw] qmailadmin probs when configure

2003-01-22 Thread Tobias Åman
I have installed the latest qmail and the latest vpopmail stable
but now i installed the dev version of vpopmail and i worke better

/Tobias
- Original Message -
From: "Clayton Weise" <[EMAIL PROTECTED]>
To: "Tobias Åman" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Wednesday, January 22, 2003 4:45 PM
Subject: RE: [vchkpw] qmailadmin probs when configure


> This is probably better for the qmailadmin list.  But chances are you
> installed an older version of vpopmail.  What version of vpopmail do you
> have installed, and what version of qmailadmin are you trying to install?
>
> -Original Message-
> From: Tobias Åman [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, January 22, 2003 2:13 AM
> To: [EMAIL PROTECTED]
> Subject: [vchkpw] qmailadmin probs when configure
>
>
> Hi!
>
> I have now installed vpopmail with mysql support from scratch and followed
a
> very good guide
> and it works super nice.
>
> But now i´m trying to install the qmailadmin but under the configure
process
> it says
>
> cat: /home/vpopmail/etc/inc_deps: No such file or directory
> cat: /home/vpopmail/etc/lib_deps: No such file or directory
>
> i configure with these options
>
>
./configure --enable-htmldir=/var/www/htdocs --enable-cgibindir=/var/www/cgi
> -bin --enable-maxusersperpage=12 --enable-ma
>
xaliasesperpage=12 --enable-no-cache=y --enable-ezmlmdir=none --enable-vpopu
> ser=vpopmail --enable-vpopgroup=vchkpw
>
> and when i try to compile i get errors like
>
> gcc -I.   -g -O2 -c qmailadmin.c
> qmailadmin.c:29: vpopmail.h: No such file or directory
> qmailadmin.c:30: vauth.h: No such file or directory
>
> i have searched tha archives but haven´t found a solution yet.. someone
who
> has these files or knows how to
> correct these errors ?
>
> Regards Tobias
>
>
>





RE: [vchkpw] qmailadmin probs when configure

2003-01-22 Thread Clayton Weise
This is probably better for the qmailadmin list.  But chances are you
installed an older version of vpopmail.  What version of vpopmail do you
have installed, and what version of qmailadmin are you trying to install?

-Original Message-
From: Tobias Åman [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 22, 2003 2:13 AM
To: [EMAIL PROTECTED]
Subject: [vchkpw] qmailadmin probs when configure


Hi!

I have now installed vpopmail with mysql support from scratch and followed a
very good guide
and it works super nice.

But now i´m trying to install the qmailadmin but under the configure process
it says

cat: /home/vpopmail/etc/inc_deps: No such file or directory
cat: /home/vpopmail/etc/lib_deps: No such file or directory

i configure with these options

./configure --enable-htmldir=/var/www/htdocs --enable-cgibindir=/var/www/cgi
-bin --enable-maxusersperpage=12 --enable-ma
xaliasesperpage=12 --enable-no-cache=y --enable-ezmlmdir=none --enable-vpopu
ser=vpopmail --enable-vpopgroup=vchkpw

and when i try to compile i get errors like

gcc -I.   -g -O2 -c qmailadmin.c
qmailadmin.c:29: vpopmail.h: No such file or directory
qmailadmin.c:30: vauth.h: No such file or directory

i have searched tha archives but haven´t found a solution yet.. someone who
has these files or knows how to
correct these errors ?

Regards Tobias







  1   2   >