Re: [qmailadmin] qmailadmin on separate apache server

2002-11-27 Thread Rick Widmer
At 05:07 PM 11/27/02 -0500, Jesse Guardiani wrote: Yeah, you could probably get it working that way. This isn't the voice of experience though. I may be wrong, but I'd say that most people just throw a web server on the box with vpopmail/qmail and run qmailadmin from there. It kinda messes

Re: [qmailadmin] Working on new 1.0.7 version

2003-01-09 Thread Rick Widmer
At 02:49 PM 1/9/03 -0600, Ken Jones wrote: Main change I needed was an easier way to automatically log into qmailadmin via a url link. Does anyone see a problem with that? Besides the obvious possibility of seeing the login information in the url link. Loud cheer! A typical URL would be

Re: [qmailadmin] QmailAdmin Solaris.

2003-01-17 Thread Rick Widmer
Some thoughts for the Solaris/AIX/HPUX crowd: Bitching and moaning _might_ get something done, or it might just piss the authors off. Explicit lists of functions that are not available and other problems is a step in the right direction. At least if gives them something to work on. The best

[qmailadmin] Differences in html templates

2003-12-23 Thread Rick Widmer
Looking through the template files in RC1 I see 26 files that start with: /head body... Only main_menu.html starts with a style: style type=text/css !-- a {color: black;} -- /style /head body... Then we have just mod_mailinglist-idx.html which starts with: META HTTP-EQUIV=Pragma

[qmailadmin] Passing user and domain

2003-12-24 Thread Rick Widmer
I had a problem sending the domain name in the initial url to QmailAdmin 1.2.0-rc1. Using this URL: http://piemur.developersdesk.com/cgi-bin/qmailadmin/?user=rwidmerdom=nowhere.net I did not get the Domain name filled in. User name worked. It did not matter what order I sent the user and

[qmailadmin] nit picking qmailadmin (CVS from last night)

2003-12-25 Thread Rick Widmer
Now that I've taken a good look at the latest QmailAdmin - I love it!! I gave it a pretty good workout and everything seems to work well under normal operation. It is looking very good! I did find a way to mess things up though. I logged in as root, cd'd into one of my domain directories and

Re: [qmailadmin] nit picking qmailadmin (CVS from last night)

2003-12-26 Thread Rick Widmer
Rick Widmer wrote: It might be a good idea to report the error to stderr. (Which I belive will show up in the Apache error_log.) I can confirm stderr goes to the Apache error log. The following changes makes stderr available in acterr. I am finding it quite handy for debugging. It seems some

Re: [qmailadmin] nit picking qmailadmin (CVS from last night)

2003-12-26 Thread Rick Widmer
Got it! This fclose is inside an if that checks for a faulure opening fs. The file is not open so fclose() is a fatal error. Remove it. Patch follows... === RCS file: /cvsroot/qmailadmin/qmailadmin/alias.c,v retrieving revision

[qmailadmin] Please take a look...

2003-12-31 Thread Rick Widmer
I would apreciate if anyone interested in QmailAdmin would take a look at the following URL, and tell me how you would feel if that was the administrator's main menu in a future version of QmailAdmin. http://www.developersdesk.com/qmailadmin/ QmailAdmin would only generate the table of

[qmailadmin] /open/ in qmailadmin's url

2004-01-03 Thread Rick Widmer
Ask me about PHP, or maybe Turbo Pascal/Delphi and I've got quite a bit of practice... this is my first big c project, so please be gentle... I have modified QmailAdmin so that almost all the HTML code is in the templates. Outside of mailinglist.c there are only 8 lines [1] with any HTML in

Re: [qmailadmin] spam assassin support

2004-01-06 Thread Rick Widmer
Kind of. --enable-modify-spam adds a Spam detection? checkbox at the bottom of the modify users page. If checked this changes the Standard delivery option from no .qmail file to one that contains the spam command. It changes the delivery line in Vacation delivery, and the Save a copy option of

Re: [qmailadmin] /open/ in qmailadmin's url

2004-01-06 Thread Rick Widmer
Tom Collins wrote: I was hoping to be able to change my directory structure for qmailadmin like this: www.hostname.com/qmailadmin/index.cgi (the qmailadmin cgi script) www.hostname.com/qmailadmin/images/(images directory) www.hostname.com/qmailadmin/help/ (the help files) How are

Re: [qmailadmin] Template problem?

2004-01-06 Thread Rick Widmer
Brandon Weisz wrote: Sure, here it is. This really has me confused. -- 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: [qmailadmin] spam assassin support

2004-01-08 Thread Rick Widmer
the only thing on my wish list is what I mentioned here already ... I would like to be able to specify 2 spam commands in qmailadmin 2 checkboxes one that could be labeled filter and one that could be labeled identify. this is so that my users could have the option of having their mail

[qmailadmin] Stupid C questions

2004-01-08 Thread Rick Widmer
I know these are very basic language questions, but since I am working on QmailAdmin, please humor me... 1. Does switch/case work with strings? switch( command ) { case showusers : show_users(); break; case showaliases : show_aliases(); break; } 2. How much trouble is

Re: [qmailadmin] Stupid C questions

2004-01-09 Thread Rick Widmer
renamed them from TmpBuf* to Buffer*, and declared them locally. It turns out there were no interactions, now there is no question - they aren't shared globals any more. Tom Collins wrote: On Jan 8, 2004, at 6:56 PM, Rick Widmer wrote: 1. Does switch/case work with strings? No. Only with byte

Re: [qmailadmin] spamassassin settings from qmailadmin

2004-01-11 Thread Rick Widmer
[EMAIL PROTECTED] wrote: Florian Munz wrote: Hi Mike, How do you do the authentification? Is there Re-Authentifaction necessary or can the user directly edit the webuserprefs from qmailadmin without new user/passwd input? Qmailadmin uses dom and moduser to determine which account to modify.

Re: [qmailadmin] Re: 1.2.0rc2: bugs + enhancements

2004-01-14 Thread Rick Widmer
David Rodgers wrote: Will these templates be external to the program code so say a regular joe could edit them after the installation? The whole idea is to get as much of the HTML out of the program and into the template files as possible. Much of the HTML is already in templates. A

Re: [qmailadmin] atime and md5

2004-01-15 Thread Rick Widmer
Sorry about that, I hit the send button by accident... If I remember right, atime (last accessed time) for files should be available on Linux, BSD and most (all) UNIXes, but not on Windows so it should be safe for QmailAdmin to use when cleaning up session files, or limiting the length of a login

[qmailadmin] QmailAdmin-1.3.0-rww is available for review

2004-01-16 Thread Rick Widmer
I think I've done all the damange I can do without changing how QmailAdmin works or looks. If anyone cares to look, I have a tarball with all my chages available at http://kimberly.developersdesk.com/ Look for the link at the bottom of the page. This is based on RC2 code. Rick

[qmailadmin] htmllibdir permissions

2004-01-17 Thread Rick Widmer
Tom, I _think_ I am now using your latest build code. All the HTML template files are being installed with permissions of 755. I don't believe they need execute, so 644 would probably be better. I can use 600 here, if I chown them to vpopmail:vchkpw, but all my domains are owned by

[qmailadmin] qmailadmin-rww -- md5 session ID

2004-01-18 Thread Rick Widmer
QUESTION: Is there a better way to 'touch' the session file to extend the session than opening it for append, then closing it? The goal is to update the mtime without altering the file contents. Anyway, I have been working on session handling. I found this MD5 library on SourceForge, and it

Re: [qmailadmin] qmailadmin-rww -- md5 session ID

2004-01-19 Thread Rick Widmer
You might be able to piggy-back off the md5 code in vpopmail... Yes, it looks very close to a drop-in replacement to the one I found. I don't even have to change the build process again. The file names match. Wish I would have seen that sooner! I have added three defines in qmailadmin.h,

[qmailadmin] Re: [qmailadmin-devel] Re: [qmailadmin] Qmailadmin 1.2.0 Release Candidate 3 released

2004-01-19 Thread Rick Widmer
John Johnson wrote: Still no Fix so this will not remove my tmda settings from the .qmail files? No. Sorry, QmailAdmin is in a feature freeze until 1.2.0 goes out the door. Your request is high on the list for things to add to the next version. It will requite major changes that would

Re: [qmailadmin] Qmailadmin 1.2.0 Release Candidate 3 released

2004-01-19 Thread Rick Widmer
Tom Collins wrote: We are getting closer to a stable release, and we need everyone's help in testing this release. More WARNINGS! After compiling the RC2 vpopmail and the RC3 QmailAdmin I get the following block of errors: In file included from qmailadmin.c:31:

Re: [qmailadmin] Qmailadmin 1.2.0 Release Candidate 3 released

2004-01-19 Thread Rick Widmer
Despite the warnings vpopmail rc2 and QmailAdmin RC3 appear to be working on my test server. I can add/remove/edit accounts, but can not test mail delivery. Rick

[qmailadmin] Sourceforge CVS not usable

2004-01-30 Thread Rick Widmer
With the release of QmailAdmin-1.2.0 we have branched the CVS. There is a branch for 1.2.0 which will get Tom's valias code and bug fixes. The default (HEAD) branch is will become 1.3.0 which is where new features will go. I expect it will be a month or two before anyone would consider

[qmailadmin] pesky CVS directories

2004-01-31 Thread Rick Widmer
Tom: I don't know how you are handling the release process, but if you start by doing a 'cvs co qmailadmin' change to 'cvs export qmailadmin' and you won't have the CVS directories. You can't commit from this fileset, but you don't have to worry about getting rid of the CVS stuff. Rick

Re: [qmailadmin] qmailadmin 1.2.0 and mysql problem

2004-02-03 Thread Rick Widmer
Jeff Koch wrote: Are these versions of vpopmail and qmailadmin supposed to have compatible Mysql support ? or could we have done something wrong in the install/compile/configuration? Look for valias support in QmailAdmin 1.2.1, which Tom is hard at work on. It is NOT supported in 1.2.0,

Re: [qmailadmin] qmailAdmin quota

2004-02-05 Thread Rick Widmer
First, please try ~vpopmail/bin/vmoddomainlimits -v | less to see what appears to be supported within vpopmail already. There are quite a few things that appear to be stored in the domain limits file that QmailAdmin does not use. (yet) I don't have them all figured out yet, but I do know

[qmailadmin] vAlas questions for Tom

2004-02-09 Thread Rick Widmer
I think I've got a plan for adding valias support. It looks easier than writing the files directly. The PHP prototype is already using only vpopmail calls for data retrieval and I've got all the lookup function working. http://kimberly.developersdesk.com/then select pMailAdmin There are

Re: [qmailadmin] Mass import of ezmlm subscribers via qmailadmin?

2004-02-13 Thread Rick Widmer
qmadmin wrote: I was taking a look at qmailadmin 1.2.0, hoping it would have a mass subscriber import feature like that found in ezmlm-web. Are there any plans in the near future for adding that into the qmailadmin ezmlm interface or am I just overlooking it somehow? I'd love to get away

Re: [qmailadmin] Re: PHP vpopmail extension

2004-02-14 Thread Rick Widmer
qmadmin wrote: I'm interested in the PHP extensions you have for the current versions of vpopmail. Since I got more than one response, I'll answer on the list... I have changed vpopmail_auth_user (which calls vauth_user) so it returns false if the username/password/domain is invalid, or

Re: AW: [qmailadmin] cgibin text output

2004-02-20 Thread Rick Widmer
My fix would be: cd to the document-root directory of your web server. cd .. mkdir cgi-bin mv qmailadmin /to/the/directory/you/just/created vi httpd.conf and add the following line: ScriptAlias /cgi-bin/ /the/directory/you/just/added then try hitting:

Re: [qmailadmin] modifying qmailadmin source to update FileMaker on password changes

2004-03-02 Thread Rick Widmer
grep for vpasswd [EMAIL PROTECTED] wrote: Hi, I think the best way would be to modify the qmailadmin source and execute the relevant C API to FileMaker (if it exists), or I can use an existing PHP API to FileMaker to update password changes. This would mean an execl(php /www/data/update.php)

Re: [qmailadmin] I can´t login to Qmailadmin

2004-03-03 Thread Rick Widmer
[EMAIL PROTECTED] wrote: Hello everybody, i have to login to an existing Qmailadmin interface but i don´t have the postmaster password. I got root Access to on the Server where qmailadmin has been installed, how can i login? Run vpasswd to change the postmaster password. It should be in

Re: [qmailadmin] spamassassin support quick question

2004-03-18 Thread Rick Widmer
Jeremy Kitchen wrote: I see that it is in the plans for vpopmail to merge in the new spamassassin features that Ken has written support for, which is great! My question is: qmailadmin already has some spamassassin support, and I'm trying to modify qmailadmin to support the new spamassassin

Re: [qmailadmin] Apache Config/Install Errors

2004-04-05 Thread Rick Widmer
A text file of binary garbage, I hope. If it is legible text, you need to find out where make install put the real QmailAdmin binary. If it is sending the program file as text data, check to make sure you have something like: ServerAlias /cgi-bin/ /path/to/cgi-bin in your Apache

Re: [qmailadmin] Possible additions

2004-04-05 Thread Rick Widmer
Justin Hopper wrote: Hello, We are finally getting around to rolling out the new QmailAdmin/Vpopmail to all of our clients and we have received some suggestions on the QmailAdmin interface. I wanted to run them by the people on the list to see if these are features that others would like to

Re: [qmailadmin] Re: Apache Config/Install Errors

2004-04-05 Thread Rick Widmer
Adam Ossenford wrote: First of all, Thank you for the quick response. I have tried many combinations of configurations. I set up mime.types with a blank extension for application/x-httpd-cgi, I have changed the servers DefaultType to be application/x-httpd-cgi instead of text. Added

Re: [qmailadmin] QmailAdmin compiling on x86-64

2004-05-11 Thread Rick Widmer
blist wrote: I am trying to configure QmailAdmin for my system to work with my xf86-64 system and not having luck.. Here is the output: ps2:/usr/src/qmail/qmailadmin-1.2.0 # ./configure --enable-htmldir=/home/prostream/prostream.net --enable-cgibindir=/home/prostream/cgi-bin/

Re: [qmailadmin] How can I define returnhttp session value?

2004-04-30 Thread Rick Widmer
Tom Collins wrote: On Apr 30, 2004, at 3:50 AM, Ben wrote: I'm going to bet this is something really simple that I just can't think of, but I can't figure out how/where to set the returnhttp session value so that when you click the logout link, it returns to a different web page. If I

Re: [qmailadmin] x86-64 Config error

2004-05-07 Thread Rick Widmer
Catherine Mekondo wrote: Does anyone know if there are any plans to add a x86-64 target or what I'd need to do to configure to add my own target. I'm running it on SUSE 8.2 (x86_64). Thanks. Interesting. I use SuSE 8.2 also. What processor are you running on? Mine is either a 266MHz Pentium,

Re: [qmailadmin] To shorten user id on vpopmail

2004-05-25 Thread Rick Widmer
Truong Tan Son wrote: Dear Sir, On vpopmail, User ID and Email Address is same: Domain mydomain.com POP3 Server: POP3.mydomain.com User ID: [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] Email Address: [EMAIL PROTECTED] Can I shorten User ID: [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]

Re: [qmailadmin] QmailAdmin RH9 Problem

2004-06-01 Thread Rick Widmer
Adam Carnine wrote: Here is my configuration output, in case I've done something here and just don't realize it. - qmailadmin 1.2.0 Current settings --- cgi-bin dir = /www/qmailadmin html dir = /www/qmailadmin

Re: [qmailadmin] max forwards

2004-06-12 Thread Rick Widmer
Ken Jones wrote: IMHO this should make that constant easier for do-it-yourselfers to find and modify. I agree. What about using the .qmailadmin-limits values for max forwards? +1 Rick

Re: [qmailadmin] Forward option in qmailadmin

2004-11-01 Thread Rick Widmer
Dave Lowe wrote: When using the vacation setting (autorespond) in qmail it builds a .qmail file in each user. My question is where does this X number of messages in Y amount of time live, our default is 3 messages per day and the system stops sending responses, I would like to tweak this default

Re: [qmailadmin] Password encryption

2004-12-10 Thread Rick Widmer
[EMAIL PROTECTED] wrote: I am still unable to determine how my mail server is encrypting passwords. An example encrypted password is: $1$AaAkCUIr$tq.YJ2hHJDQ56Zbgg83eh1 I need to be able to query the mysql db to authenticate the user via the encrypted password above. Please help crypt() with md5

Re: [qmailadmin] Blocking internal users

2005-01-13 Thread Rick Widmer
Dave Johnson wrote: Hi all Need some help on an installation. I need to set up a qmail server with the following configuration It is a two tier server with 20 users. Five users have full email access ie. external and internal and the balance only have internal access. Will vmoduser -r [EMAIL

Re: [qmailadmin] Export mailing list to a text file

2005-01-24 Thread Rick Widmer
Naveen wrote: HI ALL, Can anybody tell me how to export a list to a text file? man ezmlm-list should get you started.

Re: [qmailadmin] question about qmailadmin feature

2005-02-09 Thread Rick Widmer
Tom Collins wrote: On Feb 9, 2005, at 12:34 PM, TigerPaw wrote: I'm running a mail server setup similar to the one described at http://shupp.org/toaster/Vpopmail / qmailadmin / ezmlm / qmail /etc .. I been running some mailing lists on my server for sometime now and I haven't had

Re: [qmailadmin] Error 6 - cannot find an answer

2005-03-16 Thread Rick Widmer
Guy Merritt wrote: Tom, Thanks very much for the quick reply... I am going to try upgrading, I believe. The wife and I are pretty poor and I have a number of people willing to pay me to host their sites - every little bit helps. I'm going to try and upgrade the whole shebang Take a

Re: [qmailadmin] qmailadmin 1.2.3 cannot read vpopmail.mysql

2005-04-13 Thread Rick Widmer
matt wrote: In the apache logs I see vmysql: can't read settings from /home/vpopmail/etc/vpopmail.mysql although I don't see a reason it wouldn't be able to read that when it executes setuid If it says that, it _is_ having a problem reading the file where it stores the settings needed to open

Re: [qmailadmin] qmail install script 1.3.17

2006-07-31 Thread Rick Widmer
Franz Stancl wrote: Franck schrieb: Hi, i've released a new version of my qmail installation script 1.3.17 : I just tried out this script for the first time and I found a problem here. Using Debian Sarge it barks here: [...] chkuser.c:37:22: vpopmail.h: No such file or directory

Re: [qmailadmin] rebuilding templates as XHTML

2006-12-01 Thread Rick Widmer
Quinn Comendant wrote: Hi Tom snip Beau will be emailing you off-list to show you what is done so far and to discuss going forward with the C source mods. (This will include rhetoric such as should we alienate users who have built custom templates for pre-1.2.11 releases.) May I

Re: [qmailadmin] Update of french translation

2007-06-22 Thread Rick Widmer
Stephane Bouvard (ML) wrote: Hi, I've fixed a few bugs in the french translation of qmailadmin (problems with catchall and vacation auto-response messages, wich does not correspond anymore with the current version and thus create confusion), where can i send the update to be included in the

Re: [qmailadmin] qmailadmin onchange patch

2007-07-12 Thread Rick Widmer
Tom: Do you still have a lock on qmailadmin development? If not I'll see about getting this added. Rick John Simpson wrote: snip

Re: [qmailadmin] Beta patch

2007-09-15 Thread Rick Widmer
Matt Brookings wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi again. The patch I spoke of earlier is available to anyone who would like to try it out. Here are the changes I've made: Please upload this patch to the SourceForge tracker so it doesn't get lost.

Re: [qmailadmin] Vpopmail QmailAdmin using vadddomain -u

2007-10-28 Thread Rick Widmer
# useradd test2 # vadddomain -u test2.com password Directory: /home/test2/domains /test2.com POP via mailer: OK SMTP via mailer: OK SqWebMail Login: OK QmailAdmin Login: Error ! I think it should be: useradd test2

Re: [qmailadmin] limit Postmaster account

2009-03-12 Thread Rick Widmer
Kis Peter wrote: Hi! Is there a way to limit Postmaster account in QmailAdmin to only being able to login from a specific IP address? http://httpd.apache.org/docs/1.3/mod/mod_access.html http://httpd.apache.org/docs/1.3/sections.html !DSPAM:49b9165932681573913680!

Re: [qmailadmin] crash with add forward

2009-04-27 Thread Rick Widmer
d...@stean.ch wrote: hello there, i recently updated to qmailadmin 1.2.12 because of a fix in it which is important for my environment. however i got a new problem and had to go back to vpopmail 5.4.17, meaning that vpopmail 5.4.17 does not work with qmailadmin on my system. add a new

Re: [qmailadmin] QmailAdmin 1.2.14 released

2010-03-26 Thread Rick Widmer
Note: I cc'd Matt because of my intent to release a 1.3 branch for vpopmail 5.5. On 3/26/2010 12:20 AM, Tom Collins wrote: http://qmailadmin.sf.net/ 1.2.14 - released 25-Mar-10 Peter Pentchev - Update the Bulgarian translation Harm van Tilborg - Fix error