You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(121) |
Aug
(31) |
Sep
(65) |
Oct
(9) |
Nov
(23) |
Dec
(19) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(33) |
Feb
(19) |
Mar
(4) |
Apr
(3) |
May
(5) |
Jun
(2) |
Jul
(1) |
Aug
(2) |
Sep
(1) |
Oct
(7) |
Nov
(8) |
Dec
(3) |
2005 |
Jan
(20) |
Feb
|
Mar
(5) |
Apr
|
May
(3) |
Jun
(3) |
Jul
(8) |
Aug
(6) |
Sep
(3) |
Oct
(3) |
Nov
(3) |
Dec
(3) |
2006 |
Jan
(1) |
Feb
(1) |
Mar
(2) |
Apr
(4) |
May
(7) |
Jun
|
Jul
|
Aug
(2) |
Sep
(5) |
Oct
(3) |
Nov
(1) |
Dec
(7) |
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
(4) |
Dec
|
2008 |
Jan
|
Feb
(2) |
Mar
(4) |
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
(3) |
Oct
|
Nov
(1) |
Dec
|
2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2011 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2012 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
From: Tom C. <to...@to...> - 2005-01-03 20:29:58
|
On Jan 3, 2005, at 12:04 PM, John Peacock wrote: > but if I resubmit exactly the same page, it works. What I've > discovered is that if I check the virtual user directory after the > failure but before the second submit, the .qmail file has been > created, but it is empty. After the second submit, the .qmail file is > populated and the vacation directory exists. > > This is 100% repeatable. > > Any clues? Yes. I was so focused on making sure I was copying unrecognized lines from the old .qmail file, that I didn't fully test the code on accounts without a .qmail file! Here's the patch. The block of 8 lines removed in the second section are actually just indented. This will go into CVS shortly, and will be in the next release. Thanks for catching it. --- user.c 23 Dec 2004 18:39:48 -0000 1.11.2.9 +++ user.c 3 Jan 2005 20:25:33 -0000 @@ -904,9 +904,6 @@ } } } - if (olddotqmail == NULL) { - olddotqmail = ""; - } fs = fopen (dotqmailfn, "w"); @@ -914,18 +911,20 @@ * lines to the new .qmail file. */ emptydotqmail = 1; - dotqmailline = strtok (olddotqmail, "\n"); - while (dotqmailline) { - if ( (*dotqmailline == '|') && - (strstr (dotqmailline, "/true delete") == NULL) && - (strstr (dotqmailline, "/autorespond ") == NULL) && - (strstr (dotqmailline, SPAM_COMMAND) == NULL) ) { - fprintf (fs, "%s\n", dotqmailline); - emptydotqmail = 0; + if (olddotqmail != NULL) { + dotqmailline = strtok (olddotqmail, "\n"); + while (dotqmailline) { + if ( (*dotqmailline == '|') && + (strstr (dotqmailline, "/true delete") == NULL) && + (strstr (dotqmailline, "/autorespond ") == NULL) && + (strstr (dotqmailline, SPAM_COMMAND) == NULL) ) { + fprintf (fs, "%s\n", dotqmailline); + emptydotqmail = 0; + } + dotqmailline = strtok (NULL, "\n"); } - dotqmailline = strtok (NULL, "\n"); + free (olddotqmail); } - if (olddotqmail != NULL) free (olddotqmail); /* Decide on what to write to the new .qmail file after any old program * delivery lines are written. > p.s. anyone want a couple of my local patches: > > 1) suppress Forward/Deleted status for non-admin users Others are interested in having this, and if you've built it as a compile-time option, I'd love to see it. Does it preserve the fields as hidden for non-admins? > 2) enable to use of CRACKLIB for strong password support Yes, I'd be interested in that as well. -- Tom Collins - to...@to... QmailAdmin: http://qmailadmin.sf.net/ Vpopmail: http://vpopmail.sf.net/ Info on the Sniffter hand-held Network Tester: http://sniffter.com/ |
From: John P. <jpe...@ro...> - 2005-01-03 20:04:03
|
I downloaded 1.2.6 for testing (since I was formerly running 1.2.2). If I log in as an ordinary user and attempt to set the Vacation message, I get an error in the Apache log: Premature end of script headers but if I resubmit exactly the same page, it works. What I've discovered is that if I check the virtual user directory after the failure but before the second submit, the .qmail file has been created, but it is empty. After the second submit, the .qmail file is populated and the vacation directory exists. This is 100% repeatable. Any clues? John p.s. anyone want a couple of my local patches: 1) suppress Forward/Deleted status for non-admin users 2) enable to use of CRACKLIB for strong password support -- John Peacock Director of Information Research and Technology Rowman & Littlefield Publishing Group 4501 Forbes Boulevard Suite H Lanham, MD 20706 301-459-3366 x.5010 fax 301-429-5748 |
From: John P. <jpe...@ro...> - 2005-01-03 19:42:21
|
-- John Peacock Director of Information Research and Technology Rowman & Littlefield Publishing Group 4501 Forbes Boulevard Suite H Lanham, MD 20706 301-459-3366 x.5010 fax 301-429-5748 |
From: Tom C. <to...@to...> - 2004-12-24 16:41:19
|
http://qmailadmin.sf.net/ Release Notes: As with the last release, this one should not be used on production machines until it can be tested further. We've made more updates to the code that manages a user's .qmail file, fixing some long-standing problems in the process. QmailAdmin will now preserve any unrecognized program delivery lines in the .qmail file when writing out changes. Additionally, the vacation auto- responder always appears last (to avoid losing messages) and is now a checkbox option to any of the three account types (standard, deleted, forwarded). Please test this release by temporarily installing it, and using the 'Modify User' page to confirm that it is correctly interpreting existing .qmail files, and is writing out changes correctly. ChangeLog: Tom Collins - user.c: fix bug in handling .qmail files with blank lines. - user.c: new catchall option, forward unknown users to remote domain (e.g., x -> x...@do..., y -> y...@do..., etc.) To use, enter "@<domain>" for remote address catchall. [910410] - util.c: fix check_email_addr() (previously accepted invalid punctuation in domain part of address). - user.c: modusergo() function that writes out user's .qmail file now keeps unrecognized program delivery lines. [994319] - Change 'Vacation' option to checkbox on 'Modify User' page. Can now have vacation response with forward (and delete). [800254] |
From: Tom C. <to...@to...> - 2004-12-07 00:46:43
|
If you're running the new 1.2.5 development release, please be aware that there's a bug in how it handles blank lines. It has been fixed in CVS and will go into the 1.2.6 release. Here's the patch for anyone who needs it. --- user.c 27 Nov 2004 17:18:06 -0000 1.11.2.6 +++ user.c 7 Dec 2004 00:34:21 -0000 1.11.2.7 @@ -998,7 +998,7 @@ static struct vqpasswd *vpw = NULL; static FILE *fs1=NULL; /* for the .qmail file */ static FILE *fs2=NULL; /* for the vacation message file */ - int i; + int i, j; char fn[500]; char linebuf[256]; int inheader; @@ -1027,7 +1027,7 @@ while (fgets (linebuf, sizeof(linebuf), fs1) != NULL) { i = strlen (linebuf); /* strip trailing newline if any */ - if (i && linebuf[i-1] == '\n') linebuf[i-1] = '\0'; + if (i && (linebuf[i-1] == '\n')) linebuf[i-1] = '\0'; switch (*linebuf) { case '\0': /* blank line, ignore */ @@ -1116,8 +1116,11 @@ case '2': /* forwarding addresses */ if (fs1 != NULL) { rewind (fs1); - i = 0; + j = 0; while (fgets (linebuf, sizeof(linebuf), fs1) != NULL) { + i = strlen (linebuf); + /* strip trailing newline if any */ + if (i && (linebuf[i-1] == '\n')) linebuf[i-1] = '\0'; switch (*linebuf) { case '\0': /* blank line */ case '/': /* maildir delivery */ @@ -1127,9 +1130,9 @@ break; default: /* email address delivery */ - /* print address, skipping over '&' if necessary and removing newline */ - if (i++) printf (", "); - printh ("%H", strtok(&linebuf[(*linebuf == '&' ? 1 : 0)], "\n")); + /* print address, skipping over '&' if necessary */ + if (j++) printf (", "); + printh ("%H", &linebuf[(*linebuf == '&' ? 1 : 0)], "\n"); } } } -- Tom Collins - to...@to... QmailAdmin: http://qmailadmin.sf.net/ Vpopmail: http://vpopmail.sf.net/ Info on the Sniffter hand-held Network Tester: http://sniffter.com/ |
From: Tom C. <to...@to...> - 2004-12-01 23:47:34
|
http://qmailadmin.sf.net/ Release Notes: This release is mainly code cleanup. Function declarations were moved into header files, and we now compile QmailAdmin with all warnings on. I made changes to the code to eliminate all compiler warnings (fixing some problems in the process). Due to the large number of changes, this release will be classified as "devel" until it has had more testing. In addition to the main code cleanup, I rewrote the code that parses a user's .qmail file and made a slight change in how .qmail files with vacation responses are written. This is the first step toward fixing a number of known problems with .qmail files. ChangeLog: Tom Collins - Remove unnecessary name attributes in SUBMIT buttons. [869292] - When adding a mailing list, automatically subscribe the list owner and make them a moderator/remote admin. [892489] - user.c: deliver mail to Maildir before sending vacation message in order to prevent autorespond from losing messages. - Move .qmail parsing code from template.c to user.c. Rewrite for more flexibility and to allow new format for vacation. - configure.in: Compile with all warnings on. - Add header files: alias.h auth.h autorespond.h cgi.h command.h dotqmail.h forward.h limits.h mailinglist.h show.h template.h user.h util.h. - Modify .c files to use header files, fix function prototypes, definitions and calls for consistent parameter passing and return values. - Modify code to eliminate all compiler warnings. |
From: <ya...@lo...> - 2004-11-30 10:27:32
|
At 05.24 30/11/2004, you wrote: >During development of 1.2, we combined aliases and forwards into one. >You can now have addresses that forward to multiple addresses, either >local or remote. This is nice but i need to limit aliases and forwards for billing, i'll try to modify the source but i think it would be useful for other people to allow separate limits. What do you think about it? YaP |
From: Tom C. <to...@to...> - 2004-11-29 23:58:10
|
On Nov 29, 2004, at 3:18 PM, ya...@lo... wrote: > Hello, i have a problem/request, in qmailadmin i need to manage > aliases and forwards. There is only New forwards option, how can i > create an alias? I saw the c code but it seems there is something > missing (html file and link to it?). I need to differentiate the limit > for aliases and forwards. During development of 1.2, we combined aliases and forwards into one. You can now have addresses that forward to multiple addresses, either local or remote. -- Tom Collins - to...@to... QmailAdmin: http://qmailadmin.sf.net/ Vpopmail: http://vpopmail.sf.net/ Info on the Sniffter hand-held Network Tester: http://sniffter.com/ |
From: <ya...@lo...> - 2004-11-29 23:18:53
|
Hello, i have a problem/request, in qmailadmin i need to manage aliases and forwards. There is only New forwards option, how can i create an alias? I saw the c code but it seems there is something missing (html file and link to it?). I need to differentiate the limit for aliases and forwards. Regards YaP |
From: Tom C. <to...@to...> - 2004-11-15 19:21:01
|
http://qmailadmin.sf.net/ Release Notes: Due to the widespread changes, this release should not be used for production systems until it has been more thoroughly tested. The most significant change relates to how QmailAdmin inserts certain strings into the pages it generates. It will now properly escape strings so it is impossible to embed HTML tags in user-supplied data. This prevents cross site scripting attacks. It also properly encodes these strings when inserting them as "GET" parameters to further qmailadmin calls. This solves problems related to working with email addresses containing characters such as "+" and "&". In the process of making the changes, some possible buffer overflows were fixed, and we fixed a bug in the routine that extracts form values from posted data. ChangeLog: Tom Collins - Modify contrib/alias2forward.pl to work with '/Maildir' or '/.maildir' directory names. - Add #define to qmailadmin.h for globally setting Maildir directory name (defaults to "/Maildir" but Gentoo can use ".maildir"). - Better detect .qmail-alias files that are tied to mailing lists. (Aliases that end in "-owner" but aren't tied to ezmlm lists will now display properly.) - Add printh.c, new routines for generating HTML-safe and CGI-safe strings. - Convert sprintf calls to snprintf to avoid buffer overflow. - Changes to almost all .c and .html files to make use of printh routines. QmailAdmin should now properly handle email addresses that contain special characters (like '+' and '&'), including domain admin addresses. It now also escapes user-supplied text to avoid possible HTML-insertion and cross site scripting attacks. |
From: T. Howell-C. <th...@fr...> - 2004-11-01 10:18:33
|
On 2004/11/01 02:04 EST qma...@li... wrote: > This is an automated response. > > There were problems with the email commands you sent to Mailman via > the administrative address > <qma...@li...>. > > To obtain instructions on valid Mailman email commands, send email to > <qma...@li...> with the word "help" > in the subject line or in the body of the message. > > If you want to reach the human being that manages this mailing list, > please send your message to > <qma...@li...>. > > The following is a detailed description of the problems. > > > ***** unsubscribe > >>>>> Usage: unsubscribe <password> [<email-address>] > > ***** End: -- > The rest of the message is ignored: > > Tom Howell-Cintron > > Network Operations Center - FrogNet, Inc. > > 888.593.3764 - http://www.frognet.net/ > > > > -- Tom Howell-Cintron Network Operations Center - FrogNet, Inc. 888.593.3764 - http://www.frognet.net/ |
From: Postmaster <pos...@so...> - 2004-10-27 07:08:53
|
No message body: abh...@qa... No message body: ba...@so... Original message follows. |
From: Tom C. <to...@to...> - 2004-10-25 15:49:15
|
On Oct 25, 2004, at 2:22 AM, John White wrote: > Am I missing something? With qmailadmin, can I give users control > over their extension addresses? Unfortunately no. I've recently been looking through the vdelivermail source, and as far as I can tell, the only way that vpopmail supports extension addresses, is to just ignore the extension and accept the mail as if addressed to the primary user. It would be nice if we could move to a situation where user bob could have a .qmail-default (to replace the .qmail) in his directory, and allow bob to manage additional .qmail-extension addresses in his directory through QmailAdmin, then match those addresses from vdelivermail (when selecting the .qmail file to process). The interface for editing a user's .qmail file from QmailAdmin is quite limited for security reasons (you can't allow users to create their own .qmail files because they run as user vpopmail). -- Tom Collins - to...@to... QmailAdmin: http://qmailadmin.sf.net/ Vpopmail: http://vpopmail.sf.net/ Info on the Sniffter hand-held Network Tester: http://sniffter.com/ |
From: John W. <jw...@pf...> - 2004-10-25 09:23:03
|
On Sun, Oct 24, 2004 at 05:04:19PM -0500, Rick van Vliet wrote: > John White scribbled the following on 10/24/2004 4:02 PM: > >2) Can I use qmailadmin and vpopmail together to allow users to > > administer their own -extension addresses? > > > Not sure precisely what you want in your question #2. > Thanks for the reply, Rick. I was asking about qmail extensions to one's email address. When I had a standalone qmail system, I could add .qmail-blah files to my home directory which would route to jwh...@pf.... The contents of the file would determine what happened to the message. I had read up a lot on qmailadmin, and thought that every user would get a postmaster-like interface to control all possible sub-addresses. But it looks more like to control jwhite-blah, I have to create a jwhite-blah user from the postmaster account, not the jwhite account. Am I missing something? With qmailadmin, can I give users control over their extension addresses? -- John White IS Manager Pet Food Wholesale 714-254-1200 x279 |
From: Rick v. V. <qm...@ri...> - 2004-10-24 22:04:06
|
John White scribbled the following on 10/24/2004 4:02 PM: > I'm happy to take my quesitons to a more apprioate place, if directed. > Can't find answers through the list archives or google. > > I'm a new user of both vpopmail and qmailadmin, but not to qmail. > I've converted my site over to vpopmail and qmailadmin, but was > wondering a couple things: > > 1) Is there a slick way to set up a virtualhost directive to make > qmailadmin appear at the document root of a domain? For example, > if my webmail host is mail.example.com, I was thinking it would > be slick to set up qmailadmin to be accessed at the root of > http://mail-admin.example.com/. I currently access it at > http://mail.example.com/cgi-bin/qmailadmin > > 2) Can I use qmailadmin and vpopmail together to allow users to > administer their own -extension addresses? John- (this looks like it might be headed for an Apache httpd.conf type list) Not sure if this is exactly what you had in mind, but you might try making the adjustments on your httpd.conf file under the <VirtualHost xxx.xxx.xxx.xxx> section. Assuming Apache 2.x installation. Apache 1.x has a separate conf file for virtual hosts httpd/conf/vhosts/Vhosts.conf), but the basics are the same. In Apache2, I include a ScriptAlias: /qmailadmin /var/cgi-bin/qmailadmin...for each virtul domain which uses qmailadmin. So the user/admin needs only the http://hostname.com/qmailadmin (without the need for cgi-bin in the URL). I have only a handful of virtual domains (qmail/vpopmail/qmailadmin/sqwebmail), so maintenance is minimal. If you have a large number of virtuals, YMMV. Someone might have a more elegant way of doing what you're looking for. Not sure precisely what you want in your question #2. HTH, Rick |
From: John W. <jw...@pf...> - 2004-10-24 21:04:24
|
I'm happy to take my quesitons to a more apprioate place, if directed. Can't find answers through the list archives or google. I'm a new user of both vpopmail and qmailadmin, but not to qmail. I've converted my site over to vpopmail and qmailadmin, but was wondering a couple things: 1) Is there a slick way to set up a virtualhost directive to make qmailadmin appear at the document root of a domain? For example, if my webmail host is mail.example.com, I was thinking it would be slick to set up qmailadmin to be accessed at the root of http://mail-admin.example.com/. I currently access it at http://mail.example.com/cgi-bin/qmailadmin 2) Can I use qmailadmin and vpopmail together to allow users to administer their own -extension addresses? -- John White IS Manager Pet Food Wholesale 714-254-1200 x279 |
From: Rick W. <vc...@de...> - 2004-10-17 08:20:16
|
Tom Collins wrote: > Does anyone know why the QmailAdmin source uses fprintf instead of > printf to output its page? Not I. > Anyway, I'm wondering whether I can just replace all of those fprintf > calls with my modified printf (which will do the escaping). As best I > can tell, printf (x, y) is no different then fprintf (stdout, x, y). There shouldn't be any problem that I can think of. > The only benefit I could see to using fprintf everywhere, is that it > would be possible to dump output to a file, but I think that would be of > limited use with an interactive CGI script. I have done that for debugging, but nothing that couldn't be done by adding a fprintf() when needed. Remember, if you send something to stderr it ends up in the Apache error log. Hopefully other web servers do something similar. It is very handy to tail -f the error log file when debugging. Logging error conditions to stderr is probably a good thing even when you aren't debugging. Rick p.s. Are you sure you don't want to spend time on the PHP replacement ken is starting on? From the simscan list: >>>Quick question, possible to tie this process into qmailadmin ? i.e. in >>>> >>future, build qmailadmin with --enable-simscan or something similar ? >> >>> > >>> > We are looking at hooking it into a new php interface that will >>> > replace qmailadmin and vqadmin. > >> >> PHP? <gasp> COOL!!! >> >> If I can help, let me know... Will do :) Ken |
From: Tom C. <to...@to...> - 2004-10-17 04:38:22
|
Does anyone know why the QmailAdmin source uses fprintf instead of printf to output its page? I'm planning to clean up the output to escape HTML entities and CGI strings to take care of a few bugs. For example: Quotes in names will break the INPUT fields. Email addresses that contain "+" won't work (links to modify/delete end up with spaces in them). It's possible to embed HTML in some fields -- we need to convert '<' and '>' to '<' and '>'. This may also be a start on supporting punycode domain names... Anyway, I'm wondering whether I can just replace all of those fprintf calls with my modified printf (which will do the escaping). As best I can tell, printf (x, y) is no different then fprintf (stdout, x, y). The only benefit I could see to using fprintf everywhere, is that it would be possible to dump output to a file, but I think that would be of limited use with an interactive CGI script. -- Tom Collins - to...@to... QmailAdmin: http://qmailadmin.sf.net/ Vpopmail: http://vpopmail.sf.net/ Info on the Sniffter hand-held Network Tester: http://sniffter.com/ |
From: Vadim G. <s0...@kr...> - 2004-09-15 17:35:05
|
Hello qmailadmin-devel, Is it possible to view clear passwords using qmailadmin? -- Best regards, Vadim mailto:s0...@kr... |
From: Tom C. <to...@to...> - 2004-08-12 16:54:23
|
On Aug 11, 2004, at 10:43 PM, Maurice Snellen wrote: > Listmembers: > > I asked this on the regular qmailadmin list in another thread where it > probably got burried. > > Would it be terribly difficult to implement a search and 'alphabet' > capability on the alias/forwards page like we have on the POP3 account > page? It just takes time. It's a feature that was requested back in February, but nothing has happened with it: http://sourceforge.net/tracker/index.php? func=detail&aid=894823&group_id=6691&atid=356691 At the moment, I don't have time available to do unpaid development. Most of the recent qmailadmin/vpopmail development has been targeted toward a vpopmail daemon that can be called from PHP pages (with the ultimate goal of a PHP-based qmailadmin, I believe). Would the customer (or your company) be willing to sponsor development of the feature? I was sponsored to add valias support to QmailAdmin, and I think Bill Shupp and Ken Jones may be available/capable as well. Rick Widmer has put a lot of work into a 1.3 development series -- he might be interested as well. -- Tom Collins - to...@to... QmailAdmin: http://qmailadmin.sf.net/ Vpopmail: http://vpopmail.sf.net/ Info on the Sniffter hand-held Network Tester: http://sniffter.com/ |
From: Maurice S. <ma...@hy...> - 2004-08-12 05:43:27
|
Listmembers: I asked this on the regular qmailadmin list in another thread where it probably got burried. Would it be terribly difficult to implement a search and 'alphabet' capability on the alias/forwards page like we have on the POP3 account page? I've implemented netqmail+vpopmail+qmailadmin at the site of a customer, but the e-mail for their mail domain has only a few mailboxes that have to be POP3, the rest of them gets forwarded to the internal mail system, GroupWise. This leaves me with a list of 3700+ forwards. It's kind of a drag to have to page through 3700/25 pages in order to get to a user on the last page that has to be changed or deleted. We are implementing qmailadmin so we don't have to give shell-access to the supportdesk personel doing user management. -- Greetings, Maurice |
From: <pos...@sk...> - 2004-07-17 03:59:55
|
The attachment(s) that you sent with the following mail was deleted by MailScan (not delivered to the recipient) ========================================================== The Mail came from : qma...@li... The Mail recipient : me...@sk... Subject of the Mail : Mail Delivery (failure me...@sk...) Message-ID : <200407162240.BAA21426@manage.24online> The following attachments were deleted: Attachment: 31400159.HTM <Removed because Script-Enabling Tag "IFRAME" found> Attachment: message.scr ========================================================== Use MailScan on your EMail Servers and eScan on your Windows-based PCs and Servers for maximum protection from Internet-borne viruses. |
From: Tom C. <to...@to...> - 2004-06-26 00:49:58
|
http://qmailadmin.sf.net/ Just some minor fixes. If you're not experiencing problems related to the items listed in the ChangeLog, there's no need to upgrade from 1.2.1. Oden Eriksson - Added "lazy snap to" javascripts to have the cursor jump to the most interesting input field. The idea was stolen from Mr. Sam's sqwebmail package. [897088] Zhao Xin - Add Traditional Chinese (zh-cn) translation. Tom Collins - Allow user to create a 'blackhole' address by entering "#" as the forwarding address when creating a new alias. - Display forwards even if they're all blackholes. [941083] - Fixed bug where unrecognized .qmail-alias entries could throw QmailAdmin into an infinite loop (Modify Alias). [941082] - Display non-ezmlm aliases with "-owner" in the name. - Display aliases with "-default" in the name. - Use "# delete" instead of "|/bin/true delete" for blackholed accounts. - Remove --enable-true-path from configure (no longer used). |
From: Tom C. <to...@to...> - 2004-06-25 00:35:01
|
[Note, 1.2.1 was a "development" release over 4 months ago without any significant bug reports. We've decided to release it as "stable" for users who have been waiting for valias support in QmailAdmin.] http://qmailadmin.sf.net/ 1.2.1 - 10-Feb-04 Release Notes: This release adds valias support to QmailAdmin. If you compile vpopmail with --enable-valias and use a database backend, it can store aliases in a table instead of .qmail-alias files. QmailAdmin can now manage those table entries. *** Please use the dotqmail2valias program from vpopmail 5.4.1 (or later) if you need to convert aliases in the old .qmail-alias format to valias table entries. *** A special thanks to ACIS Pty Ltd in Australia for sponsoring Tom Collins to add valias support to QmailAdmin. ChangeLog: Tom Collins - Add note to INSTALL about requiring vpopmail 5.4.0 or later. - Store aliases and autoresponders in valias table if vpopmail was compiled with --enable-valias. Development of this feature was sponsored by ACIS Pty Ltd <http://www.acis.com.au/>. [774819] * If you are upgrading from a previous version of QmailAdmin and used the --enable-valias option when building vpopmail, be sure to download vpopmail 5.4.1 or later and use the dotqmail2valias program to convert .qmail-alias files to valias table entries. |
From: <ben...@id...> - 2004-05-22 12:08:21
|
Dear Open Source developer I am doing a research project on "Fun and Software Development" in which I kindly invite you to participate. You will find the online survey under http://fasd.ethz.ch/qsf/. The questionnaire consists of 53 questions and you will need about 15 minutes to complete it. With the FASD project (Fun and Software Development) we want to define the motivational significance of fun when software developers decide to engage in Open Source projects. What is special about our research project is that a similar survey is planned with software developers in commercial firms. This procedure allows the immediate comparison between the involved individuals and the conditions of production of these two development models. Thus we hope to obtain substantial new insights to the phenomenon of Open Source Development. With many thanks for your participation, Benno Luthiger PS: The results of the survey will be published under http://www.isu.unizh.ch/fuehrung/blprojects/FASD/. We have set up the mailing list fa...@we... for this study. Please see http://fasd.ethz.ch/qsf/mailinglist_en.html for registration to this mailing list. _______________________________________________________________________ Benno Luthiger Swiss Federal Institute of Technology Zurich 8092 Zurich Mail: benno.luthiger(at)id.ethz.ch _______________________________________________________________________ |