postfixadmin-tracker Mailing List for PostfixAdmin (Page 18)
Brought to you by:
christian_boltz,
gingerdog
You can subscribe to this list here.
| 2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(5) |
Oct
(67) |
Nov
(83) |
Dec
(47) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2008 |
Jan
(57) |
Feb
(15) |
Mar
(21) |
Apr
(38) |
May
(27) |
Jun
(38) |
Jul
(35) |
Aug
(50) |
Sep
(8) |
Oct
(9) |
Nov
(59) |
Dec
(59) |
| 2009 |
Jan
(27) |
Feb
(42) |
Mar
(63) |
Apr
(46) |
May
(26) |
Jun
(25) |
Jul
(40) |
Aug
(19) |
Sep
(17) |
Oct
(35) |
Nov
(26) |
Dec
(21) |
| 2010 |
Jan
(11) |
Feb
(19) |
Mar
(40) |
Apr
(25) |
May
(23) |
Jun
(17) |
Jul
(10) |
Aug
(18) |
Sep
(21) |
Oct
(12) |
Nov
(10) |
Dec
(22) |
| 2011 |
Jan
(30) |
Feb
(23) |
Mar
(23) |
Apr
(38) |
May
(32) |
Jun
(19) |
Jul
(20) |
Aug
(36) |
Sep
(11) |
Oct
(28) |
Nov
(4) |
Dec
(4) |
| 2012 |
Jan
(6) |
Feb
(3) |
Mar
(16) |
Apr
(28) |
May
(29) |
Jun
(10) |
Jul
(2) |
Aug
(3) |
Sep
|
Oct
(13) |
Nov
(1) |
Dec
(1) |
| 2013 |
Jan
(11) |
Feb
(7) |
Mar
(29) |
Apr
(2) |
May
(3) |
Jun
(15) |
Jul
(8) |
Aug
(5) |
Sep
(5) |
Oct
(4) |
Nov
(27) |
Dec
(81) |
| 2014 |
Jan
(12) |
Feb
(13) |
Mar
(5) |
Apr
|
May
(41) |
Jun
(16) |
Jul
(7) |
Aug
(10) |
Sep
(24) |
Oct
(50) |
Nov
|
Dec
(2) |
| 2015 |
Jan
(5) |
Feb
(2) |
Mar
(7) |
Apr
(20) |
May
(1) |
Jun
(3) |
Jul
(12) |
Aug
(1) |
Sep
(17) |
Oct
(5) |
Nov
(20) |
Dec
(10) |
| 2016 |
Jan
(10) |
Feb
(11) |
Mar
(22) |
Apr
(30) |
May
(33) |
Jun
(3) |
Jul
|
Aug
(12) |
Sep
(20) |
Oct
(11) |
Nov
(15) |
Dec
(8) |
| 2017 |
Jan
(1) |
Feb
(11) |
Mar
(10) |
Apr
|
May
(3) |
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
(1) |
Nov
|
Dec
(3) |
| 2018 |
Jan
(2) |
Feb
|
Mar
(1) |
Apr
|
May
(4) |
Jun
(2) |
Jul
(4) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2019 |
Jan
|
Feb
|
Mar
|
Apr
(3) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2021 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: SourceForge.net <no...@so...> - 2011-01-03 22:57:10
|
Feature Requests item #2686611, was opened at 2009-03-13 19:48 Message generated for change (Comment added) made by libertytrek You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937967&aid=2686611&group_id=191583 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Core Group: SVN (please specify revision!) Status: Open Resolution: None Priority: 5 Private: No Submitted By: Christian Boltz (christian_boltz) Assigned to: Nobody/Anonymous (nobody) Summary: allow disabling changing password / forwarding for users Initial Comment: Comment from libertytrek in https://sourceforge.net/tracker2/?func=detail&atid=937966&aid=2678293&group_id=191583 ---------------------------------------------------------------------- I actually don't WANT the users to be able to change their passwords for one server I manage... passwords are assigned and periodically changed... I had to modify the users template to remove the code allowing them to change their passwords AND the code allowing them to create forwarders (this was being heavily abused)... but I did want them to still be able to manage their vacation message... ---------------------------------------------------------------------- @libertytrek: come on - it isn't that difficult ;-) There are two methods to disable code sections based on a $CONF variable: a) if you want to disable a small section (for example the menu entry), wrap it in an if block: if (boolconf('users_password_control')) { ... code printing the menu item ... } b) to disable the whole file, add the following section at the beginning if( !boolconf('users_password_control') ) { header("Location: " . $CONF['postfix_admin_url'] . "/users/main.php"); exit(0); } And yes, I really want to see a patch from you. Even if it isn't perfect, it makes it easier for me than doing all the needed changes myself. At least I see which code sections need to be changed ;-) ---------------------------------------------------------------------- Comment By: Charles (libertytrek) Date: 2011-01-03 17:57 Message: Ummm... now what... i can't attach any files... what am i missing? ---------------------------------------------------------------------- Comment By: Charles (libertytrek) Date: 2011-01-03 17:56 Message: Ok... almost two years to complete my first two itty bitty patches... not too promising... ;) ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937967&aid=2686611&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2011-01-03 22:56:18
|
Feature Requests item #2686611, was opened at 2009-03-13 19:48 Message generated for change (Comment added) made by libertytrek You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937967&aid=2686611&group_id=191583 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Core Group: SVN (please specify revision!) Status: Open Resolution: None Priority: 5 Private: No Submitted By: Christian Boltz (christian_boltz) Assigned to: Nobody/Anonymous (nobody) Summary: allow disabling changing password / forwarding for users Initial Comment: Comment from libertytrek in https://sourceforge.net/tracker2/?func=detail&atid=937966&aid=2678293&group_id=191583 ---------------------------------------------------------------------- I actually don't WANT the users to be able to change their passwords for one server I manage... passwords are assigned and periodically changed... I had to modify the users template to remove the code allowing them to change their passwords AND the code allowing them to create forwarders (this was being heavily abused)... but I did want them to still be able to manage their vacation message... ---------------------------------------------------------------------- @libertytrek: come on - it isn't that difficult ;-) There are two methods to disable code sections based on a $CONF variable: a) if you want to disable a small section (for example the menu entry), wrap it in an if block: if (boolconf('users_password_control')) { ... code printing the menu item ... } b) to disable the whole file, add the following section at the beginning if( !boolconf('users_password_control') ) { header("Location: " . $CONF['postfix_admin_url'] . "/users/main.php"); exit(0); } And yes, I really want to see a patch from you. Even if it isn't perfect, it makes it easier for me than doing all the needed changes myself. At least I see which code sections need to be changed ;-) ---------------------------------------------------------------------- Comment By: Charles (libertytrek) Date: 2011-01-03 17:56 Message: Ok... almost two years to complete my first two itty bitty patches... not too promising... ;) ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937967&aid=2686611&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2011-01-03 12:13:58
|
Feature Requests item #3150300, was opened at 2011-01-03 07:13 Message generated for change (Tracker Item Submitted) made by libertytrek You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937967&aid=3150300&group_id=191583 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Charles (libertytrek) Assigned to: Nobody/Anonymous (nobody) Summary: Move config.local.php location to /etc/postfixadmin Initial Comment: For consistencies sake... ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937967&aid=3150300&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2011-01-03 12:10:48
|
Bugs item #3150296, was opened at 2011-01-03 07:10 Message generated for change (Tracker Item Submitted) made by libertytrek You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=3150296&group_id=191583 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Vacation Group: v2.3.2 Status: Open Resolution: None Priority: 5 Private: No Submitted By: Charles (libertytrek) Assigned to: Nobody/Anonymous (nobody) Summary: Vacation logging is broken Initial Comment: Ok, now I see why I opened that other one... Apparently, logging at log_level 1 is just broken. I know I saw something logged with INFO tags, but now nothing is being logged at level 1 again, I'm not even sure everything ie being logged that should be when set to 2, but someone with more knowledge of the vacation script is going to have to look at this... And, imho, logging is very important, so this should be a priority. I'm happy to performy any diags necessary to help troubleshoot. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=3150296&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2011-01-02 22:23:56
|
Feature Requests item #2752992, was opened at 2009-04-11 09:24 Message generated for change (Comment added) made by libertytrek You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937967&aid=2752992&group_id=191583 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Core Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Charles (libertytrek) Assigned to: Nobody/Anonymous (nobody) Summary: Cracklib support for strong passwords Initial Comment: I'd love to see support for the use of cracklib, where the Admin can define the password criteria on a per-domain basis, in a simple screen... Min Length: Duration: # of Upper Case characters: # of Lower Case characters: # of Number characters: # of Non-AlphaNumeric characters: Illegal characters: Hmmm... duration would also require Cron support I guess... and also the ability to send email notifications (similar to Quota notifications) so the user knows when they need to change it - maybe even with a link to a secure change password page so if they let it expire, they can still go change it without having to call support... ---------------------------------------------------------------------- >Comment By: Charles (libertytrek) Date: 2011-01-02 17:23 Message: I'd still like to see this happen, although I no longer have any interest in setting a duration, so no cron support would be required... ---------------------------------------------------------------------- Comment By: GingerDog (gingerdog) Date: 2009-04-18 02:59 Message: Is there anything else you'd like adding ? :-) It seems a good idea - and there is http://pecl.php.net/package/crack which would help somewhat. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937967&aid=2752992&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2011-01-02 22:21:44
|
Bugs item #3148339, was opened at 2010-12-30 17:14 Message generated for change (Settings changed) made by libertytrek You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=3148339&group_id=191583 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Vacation Group: v2.3.2 >Status: Closed Resolution: Invalid Priority: 5 Private: No Submitted By: Charles (libertytrek) Assigned to: Nobody/Anonymous (nobody) Summary: Info log_level doesn't log anything Initial Comment: I'd expect it to log at least a one liner every time a vacation message was sent (or not sent due to 'Already notified')... ---------------------------------------------------------------------- Comment By: Charles (libertytrek) Date: 2011-01-02 14:30 Message: Never mind... I must have been brain dead - I was looking in the Log in the GUI... Sorry for the noise... ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=3148339&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2011-01-02 22:19:36
|
Feature Requests item #3149964, was opened at 2011-01-02 17:19 Message generated for change (Tracker Item Submitted) made by libertytrek You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937967&aid=3149964&group_id=191583 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Interface Improvements (example) Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Charles (libertytrek) Assigned to: Nobody/Anonymous (nobody) Summary: Change how Account Status and Edits are handled Initial Comment: Adding this after an IRC conversation with Christian so I don't forget about it... I'd like to see the Admin GUI modified to make it easier to fit more data in less space. Currently when you enable the ability to manage users Vacation and Aliases, it adds two more columns to the users list... I'm proposing the following changes: 1. Change the 'Active' column to be named 'Status' 2. Provide two, dual-state (normal and greyed out) icons, to show the status of the Account (Active (normal icon - green/checkmark?) or Disabled (greyed out icon - 'x'?), and of the accounts Vacation message (icon = Beach Lounger? Margarita Glass?), with descriptive text that displays on mouse-over. This would allow this one column to now provide the status for both the account itself and the vacation message at a glance. 3. After this column, just have two menu/buttons: 'Edit', and 'Del' 4. On mouse-over, the 'Edit' menu would pop-out the available choices, depending on what Admin options were set. If all were activated, the choices would be like: Edit... > Account > Vacation > Aliases So, just a single click is still all that is needed. I'll see if I can mock something up sometime soon... ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937967&aid=3149964&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2011-01-02 19:30:25
|
Bugs item #3148339, was opened at 2010-12-30 17:14 Message generated for change (Comment added) made by libertytrek You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=3148339&group_id=191583 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Vacation Group: v2.3.2 Status: Open >Resolution: Invalid Priority: 5 Private: No Submitted By: Charles (libertytrek) Assigned to: Nobody/Anonymous (nobody) Summary: Info log_level doesn't log anything Initial Comment: I'd expect it to log at least a one liner every time a vacation message was sent (or not sent due to 'Already notified')... ---------------------------------------------------------------------- >Comment By: Charles (libertytrek) Date: 2011-01-02 14:30 Message: Never mind... I must have been brain dead - I was looking in the Log in the GUI... Sorry for the noise... ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=3148339&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2011-01-02 19:29:24
|
Feature Requests item #3149880, was opened at 2011-01-02 14:29 Message generated for change (Tracker Item Submitted) made by libertytrek You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937967&aid=3149880&group_id=191583 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Vacation Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Charles (libertytrek) Assigned to: Nobody/Anonymous (nobody) Summary: Vacation Log view in GUI Initial Comment: I'd like to be able to view the vacation log from the GUI, both for the Admin and the User... ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937967&aid=3149880&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2010-12-31 14:11:03
|
Bugs item #3148694, was opened at 2010-12-31 09:00 Message generated for change (Comment added) made by libertytrek You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=3148694&group_id=191583 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Core Group: v2.3.2 Status: Open Resolution: None Priority: 5 Private: No Submitted By: Charles (libertytrek) Assigned to: Nobody/Anonymous (nobody) Summary: Modifying a users vacation as user is DOUBLE logged Initial Comment: Subject says it... When a user modifies their own vacation message, the admin log view shows a double entry with the same date/time stamp. ---------------------------------------------------------------------- >Comment By: Charles (libertytrek) Date: 2010-12-31 09:11 Message: I just realized this is probably because both the vacation message and vacation alias get 'touched'... ? ---------------------------------------------------------------------- Comment By: Charles (libertytrek) Date: 2010-12-31 09:01 Message: Oh... only vacation modifications appear to be double logged, editing the same users alias results in a single log entry... ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=3148694&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2010-12-31 14:01:06
|
Bugs item #3148694, was opened at 2010-12-31 09:00 Message generated for change (Comment added) made by libertytrek You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=3148694&group_id=191583 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Core Group: v2.3.2 Status: Open Resolution: None Priority: 5 Private: No Submitted By: Charles (libertytrek) Assigned to: Nobody/Anonymous (nobody) Summary: Modifying a users vacation as user is DOUBLE logged Initial Comment: Subject says it... When a user modifies their own vacation message, the admin log view shows a double entry with the same date/time stamp. ---------------------------------------------------------------------- >Comment By: Charles (libertytrek) Date: 2010-12-31 09:01 Message: Oh... only vacation modifications appear to be double logged, editing the same users alias results in a single log entry... ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=3148694&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2010-12-31 14:00:08
|
Bugs item #3148694, was opened at 2010-12-31 09:00 Message generated for change (Tracker Item Submitted) made by libertytrek You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=3148694&group_id=191583 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Core Group: v2.3.2 Status: Open Resolution: None Priority: 5 Private: No Submitted By: Charles (libertytrek) Assigned to: Nobody/Anonymous (nobody) Summary: Modifying a users vacation as user is DOUBLE logged Initial Comment: Subject says it... When a user modifies their own vacation message, the admin log view shows a double entry with the same date/time stamp. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=3148694&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2010-12-31 13:56:59
|
Bugs item #3148692, was opened at 2010-12-31 08:56 Message generated for change (Tracker Item Submitted) made by libertytrek You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=3148692&group_id=191583 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Core Group: v2.3.2 Status: Open Resolution: None Priority: 5 Private: No Submitted By: Charles (libertytrek) Assigned to: Nobody/Anonymous (nobody) Summary: Modifying a users vacation as admin is not logged Initial Comment: Not sure if this bug belongs in core or not... When I enable, disable or just edit a users vacation message when logged in as admin, nothing logged. Editing the users personal details (name, etc) is logged... When I modify the users vacation when logged in as the user, it is logged, but there are TWO entries with a duplicate time stamp. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=3148692&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2010-12-30 22:14:11
|
Bugs item #3148339, was opened at 2010-12-30 17:14 Message generated for change (Tracker Item Submitted) made by libertytrek You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=3148339&group_id=191583 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Vacation Group: v2.3.2 Status: Open Resolution: None Priority: 5 Private: No Submitted By: Charles (libertytrek) Assigned to: Nobody/Anonymous (nobody) Summary: Info log_level doesn't log anything Initial Comment: I'd expect it to log at least a one liner every time a vacation message was sent (or not sent due to 'Already notified')... ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=3148339&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2010-12-30 18:28:44
|
Bugs item #3034389, was opened at 2010-07-25 21:10 Message generated for change (Comment added) made by valkum You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=3034389&group_id=191583 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Core Group: v2.3.1 Status: Open Resolution: None Priority: 5 Private: No Submitted By: Christian Boltz (christian_boltz) Assigned to: Nobody/Anonymous (nobody) Summary: dovecot 2.0 breaks dovecotpw encryption Initial Comment: copied from http://sourceforge.net/tracker/index.php?func=detail&aid=3032816&group_id=191583&atid=937964 ***** mickaelnguyen ***** Also, dovecot 2.0 (which is nearing release, see http://dovecot.org/list/dovecot-news/2010-July/000162.html) will break this setting, because dovecotpw has been removed and its functionality integrated in doveadm. So the command to encrypt a password goes from dovecotpw -s 'CRYPT-METHOD' to doveadm pw -s 'CRYPT-METHOD' Maybe something to look into for 2.3.2 :D~ ***** christian_boltz ***** Oh, nice - I like it when external programs come with incompatible changes :-/ Well, at least it's a new major version ;-) $CONF['dovecotpw'] = '/path/to/doveadm -pw' could work... (untested, feedback welcome) If this works, I'll add a comment to config.inc.php in the 2.3 branch. (I'd like to avoid a bigger change in this branch.) ***** mickaelnguyen ***** It doesn't work. After a bit of tinkering, it appears that doveadm does a check on whether it's stdin is a tty or not (It outputs "Fatal: stdin isn't a TTY") Guess we can't fix this without "bigger changes". :( ---------------------------------------------------------------------- Comment By: Valkum (valkum) Date: 2010-12-30 19:28 Message: Timo said it was a bug in this version youve tested. A tty check is also done by getpass() so it is not the real problem. He said also that the tty check is gone in 2.0.8 For us it means that we need a way to suppress the output of /dev/tty which comes from dovecotpw and doveadm pw for use in cli,. ---------------------------------------------------------------------- Comment By: Valkum (valkum) Date: 2010-12-30 18:48 Message: Damn, checked it and it doesn't work ---------------------------------------------------------------------- Comment By: Valkum (valkum) Date: 2010-12-30 18:44 Message: Another try: Snowleopard wrote this at proc_open He uses this for his GPG function: // Set up the descriptors $Descriptors = array( 0 => array("pipe", "r"), 1 => array("pipe", "w"), 2 => array("pipe", "w"), 3 => array("pipe", "r") // This is the pipe we can feed the password into ); we could also try // Set up the descriptors $Descriptors = array( 0 => array("pty"), 1 => array("pty"), 2 => array("pty"), 3 => array("pty") // This is the pipe we can feed the password into ); But i think the securest and better way is to write a php lib for dovecot crypt methods ---------------------------------------------------------------------- Comment By: Charles (libertytrek) Date: 2010-12-30 16:17 Message: Maybe someone could pose a question to Timo (dovecot author) and he could make a suggestion for how to handle this - or possibly even change the way 'doveadm -pw' works so this could be fixed properly in pfadmin? ---------------------------------------------------------------------- Comment By: Valkum (valkum) Date: 2010-12-30 15:02 Message: I tested the pty fix but it doesn't work i got can't encrypt password with dovecotpw on my console with use of PFA-CLI ---------------------------------------------------------------------- Comment By: Christian Boltz (christian_boltz) Date: 2010-07-25 21:19 Message: A user comment on http://php.net/manual/en/function.proc-open.php (from 2007-12-27) suggests that using 'pty' might work. Please open functions.inc.php, search for "$spec = array(" (around line 1213 in 2.3.1) and replace it (including the following 3 lines) with: $spec = array( 0 => array('pty'), 1 => array('pty'), 2 => array('pty') ); Does this help? Otherwise we'll probably have to use "doveadm pw -p foobar" with the password on the commandline. However I don't like this idea because the password will be visible in the processlist for a short time then :-( ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=3034389&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2010-12-30 17:48:46
|
Bugs item #3034389, was opened at 2010-07-25 21:10 Message generated for change (Comment added) made by valkum You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=3034389&group_id=191583 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Core Group: v2.3.1 Status: Open Resolution: None Priority: 5 Private: No Submitted By: Christian Boltz (christian_boltz) Assigned to: Nobody/Anonymous (nobody) Summary: dovecot 2.0 breaks dovecotpw encryption Initial Comment: copied from http://sourceforge.net/tracker/index.php?func=detail&aid=3032816&group_id=191583&atid=937964 ***** mickaelnguyen ***** Also, dovecot 2.0 (which is nearing release, see http://dovecot.org/list/dovecot-news/2010-July/000162.html) will break this setting, because dovecotpw has been removed and its functionality integrated in doveadm. So the command to encrypt a password goes from dovecotpw -s 'CRYPT-METHOD' to doveadm pw -s 'CRYPT-METHOD' Maybe something to look into for 2.3.2 :D~ ***** christian_boltz ***** Oh, nice - I like it when external programs come with incompatible changes :-/ Well, at least it's a new major version ;-) $CONF['dovecotpw'] = '/path/to/doveadm -pw' could work... (untested, feedback welcome) If this works, I'll add a comment to config.inc.php in the 2.3 branch. (I'd like to avoid a bigger change in this branch.) ***** mickaelnguyen ***** It doesn't work. After a bit of tinkering, it appears that doveadm does a check on whether it's stdin is a tty or not (It outputs "Fatal: stdin isn't a TTY") Guess we can't fix this without "bigger changes". :( ---------------------------------------------------------------------- Comment By: Valkum (valkum) Date: 2010-12-30 18:48 Message: Damn, checked it and it doesn't work ---------------------------------------------------------------------- Comment By: Valkum (valkum) Date: 2010-12-30 18:44 Message: Another try: Snowleopard wrote this at proc_open He uses this for his GPG function: // Set up the descriptors $Descriptors = array( 0 => array("pipe", "r"), 1 => array("pipe", "w"), 2 => array("pipe", "w"), 3 => array("pipe", "r") // This is the pipe we can feed the password into ); we could also try // Set up the descriptors $Descriptors = array( 0 => array("pty"), 1 => array("pty"), 2 => array("pty"), 3 => array("pty") // This is the pipe we can feed the password into ); But i think the securest and better way is to write a php lib for dovecot crypt methods ---------------------------------------------------------------------- Comment By: Charles (libertytrek) Date: 2010-12-30 16:17 Message: Maybe someone could pose a question to Timo (dovecot author) and he could make a suggestion for how to handle this - or possibly even change the way 'doveadm -pw' works so this could be fixed properly in pfadmin? ---------------------------------------------------------------------- Comment By: Valkum (valkum) Date: 2010-12-30 15:02 Message: I tested the pty fix but it doesn't work i got can't encrypt password with dovecotpw on my console with use of PFA-CLI ---------------------------------------------------------------------- Comment By: Christian Boltz (christian_boltz) Date: 2010-07-25 21:19 Message: A user comment on http://php.net/manual/en/function.proc-open.php (from 2007-12-27) suggests that using 'pty' might work. Please open functions.inc.php, search for "$spec = array(" (around line 1213 in 2.3.1) and replace it (including the following 3 lines) with: $spec = array( 0 => array('pty'), 1 => array('pty'), 2 => array('pty') ); Does this help? Otherwise we'll probably have to use "doveadm pw -p foobar" with the password on the commandline. However I don't like this idea because the password will be visible in the processlist for a short time then :-( ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=3034389&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2010-12-30 17:44:01
|
Bugs item #3034389, was opened at 2010-07-25 21:10 Message generated for change (Comment added) made by valkum You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=3034389&group_id=191583 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Core Group: v2.3.1 Status: Open Resolution: None Priority: 5 Private: No Submitted By: Christian Boltz (christian_boltz) Assigned to: Nobody/Anonymous (nobody) Summary: dovecot 2.0 breaks dovecotpw encryption Initial Comment: copied from http://sourceforge.net/tracker/index.php?func=detail&aid=3032816&group_id=191583&atid=937964 ***** mickaelnguyen ***** Also, dovecot 2.0 (which is nearing release, see http://dovecot.org/list/dovecot-news/2010-July/000162.html) will break this setting, because dovecotpw has been removed and its functionality integrated in doveadm. So the command to encrypt a password goes from dovecotpw -s 'CRYPT-METHOD' to doveadm pw -s 'CRYPT-METHOD' Maybe something to look into for 2.3.2 :D~ ***** christian_boltz ***** Oh, nice - I like it when external programs come with incompatible changes :-/ Well, at least it's a new major version ;-) $CONF['dovecotpw'] = '/path/to/doveadm -pw' could work... (untested, feedback welcome) If this works, I'll add a comment to config.inc.php in the 2.3 branch. (I'd like to avoid a bigger change in this branch.) ***** mickaelnguyen ***** It doesn't work. After a bit of tinkering, it appears that doveadm does a check on whether it's stdin is a tty or not (It outputs "Fatal: stdin isn't a TTY") Guess we can't fix this without "bigger changes". :( ---------------------------------------------------------------------- Comment By: Valkum (valkum) Date: 2010-12-30 18:44 Message: Another try: Snowleopard wrote this at proc_open He uses this for his GPG function: // Set up the descriptors $Descriptors = array( 0 => array("pipe", "r"), 1 => array("pipe", "w"), 2 => array("pipe", "w"), 3 => array("pipe", "r") // This is the pipe we can feed the password into ); we could also try // Set up the descriptors $Descriptors = array( 0 => array("pty"), 1 => array("pty"), 2 => array("pty"), 3 => array("pty") // This is the pipe we can feed the password into ); But i think the securest and better way is to write a php lib for dovecot crypt methods ---------------------------------------------------------------------- Comment By: Charles (libertytrek) Date: 2010-12-30 16:17 Message: Maybe someone could pose a question to Timo (dovecot author) and he could make a suggestion for how to handle this - or possibly even change the way 'doveadm -pw' works so this could be fixed properly in pfadmin? ---------------------------------------------------------------------- Comment By: Valkum (valkum) Date: 2010-12-30 15:02 Message: I tested the pty fix but it doesn't work i got can't encrypt password with dovecotpw on my console with use of PFA-CLI ---------------------------------------------------------------------- Comment By: Christian Boltz (christian_boltz) Date: 2010-07-25 21:19 Message: A user comment on http://php.net/manual/en/function.proc-open.php (from 2007-12-27) suggests that using 'pty' might work. Please open functions.inc.php, search for "$spec = array(" (around line 1213 in 2.3.1) and replace it (including the following 3 lines) with: $spec = array( 0 => array('pty'), 1 => array('pty'), 2 => array('pty') ); Does this help? Otherwise we'll probably have to use "doveadm pw -p foobar" with the password on the commandline. However I don't like this idea because the password will be visible in the processlist for a short time then :-( ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=3034389&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2010-12-30 15:17:24
|
Bugs item #3034389, was opened at 2010-07-25 15:10 Message generated for change (Comment added) made by libertytrek You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=3034389&group_id=191583 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Core Group: v2.3.1 Status: Open Resolution: None Priority: 5 Private: No Submitted By: Christian Boltz (christian_boltz) Assigned to: Nobody/Anonymous (nobody) Summary: dovecot 2.0 breaks dovecotpw encryption Initial Comment: copied from http://sourceforge.net/tracker/index.php?func=detail&aid=3032816&group_id=191583&atid=937964 ***** mickaelnguyen ***** Also, dovecot 2.0 (which is nearing release, see http://dovecot.org/list/dovecot-news/2010-July/000162.html) will break this setting, because dovecotpw has been removed and its functionality integrated in doveadm. So the command to encrypt a password goes from dovecotpw -s 'CRYPT-METHOD' to doveadm pw -s 'CRYPT-METHOD' Maybe something to look into for 2.3.2 :D~ ***** christian_boltz ***** Oh, nice - I like it when external programs come with incompatible changes :-/ Well, at least it's a new major version ;-) $CONF['dovecotpw'] = '/path/to/doveadm -pw' could work... (untested, feedback welcome) If this works, I'll add a comment to config.inc.php in the 2.3 branch. (I'd like to avoid a bigger change in this branch.) ***** mickaelnguyen ***** It doesn't work. After a bit of tinkering, it appears that doveadm does a check on whether it's stdin is a tty or not (It outputs "Fatal: stdin isn't a TTY") Guess we can't fix this without "bigger changes". :( ---------------------------------------------------------------------- Comment By: Charles (libertytrek) Date: 2010-12-30 10:17 Message: Maybe someone could pose a question to Timo (dovecot author) and he could make a suggestion for how to handle this - or possibly even change the way 'doveadm -pw' works so this could be fixed properly in pfadmin? ---------------------------------------------------------------------- Comment By: Valkum (valkum) Date: 2010-12-30 09:02 Message: I tested the pty fix but it doesn't work i got can't encrypt password with dovecotpw on my console with use of PFA-CLI ---------------------------------------------------------------------- Comment By: Christian Boltz (christian_boltz) Date: 2010-07-25 15:19 Message: A user comment on http://php.net/manual/en/function.proc-open.php (from 2007-12-27) suggests that using 'pty' might work. Please open functions.inc.php, search for "$spec = array(" (around line 1213 in 2.3.1) and replace it (including the following 3 lines) with: $spec = array( 0 => array('pty'), 1 => array('pty'), 2 => array('pty') ); Does this help? Otherwise we'll probably have to use "doveadm pw -p foobar" with the password on the commandline. However I don't like this idea because the password will be visible in the processlist for a short time then :-( ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=3034389&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2010-12-30 14:02:58
|
Bugs item #3034389, was opened at 2010-07-25 21:10 Message generated for change (Comment added) made by valkum You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=3034389&group_id=191583 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Core Group: v2.3.1 Status: Open Resolution: None Priority: 5 Private: No Submitted By: Christian Boltz (christian_boltz) Assigned to: Nobody/Anonymous (nobody) Summary: dovecot 2.0 breaks dovecotpw encryption Initial Comment: copied from http://sourceforge.net/tracker/index.php?func=detail&aid=3032816&group_id=191583&atid=937964 ***** mickaelnguyen ***** Also, dovecot 2.0 (which is nearing release, see http://dovecot.org/list/dovecot-news/2010-July/000162.html) will break this setting, because dovecotpw has been removed and its functionality integrated in doveadm. So the command to encrypt a password goes from dovecotpw -s 'CRYPT-METHOD' to doveadm pw -s 'CRYPT-METHOD' Maybe something to look into for 2.3.2 :D~ ***** christian_boltz ***** Oh, nice - I like it when external programs come with incompatible changes :-/ Well, at least it's a new major version ;-) $CONF['dovecotpw'] = '/path/to/doveadm -pw' could work... (untested, feedback welcome) If this works, I'll add a comment to config.inc.php in the 2.3 branch. (I'd like to avoid a bigger change in this branch.) ***** mickaelnguyen ***** It doesn't work. After a bit of tinkering, it appears that doveadm does a check on whether it's stdin is a tty or not (It outputs "Fatal: stdin isn't a TTY") Guess we can't fix this without "bigger changes". :( ---------------------------------------------------------------------- Comment By: Valkum (valkum) Date: 2010-12-30 15:02 Message: I tested the pty fix but it doesn't work i got can't encrypt password with dovecotpw on my console with use of PFA-CLI ---------------------------------------------------------------------- Comment By: Christian Boltz (christian_boltz) Date: 2010-07-25 21:19 Message: A user comment on http://php.net/manual/en/function.proc-open.php (from 2007-12-27) suggests that using 'pty' might work. Please open functions.inc.php, search for "$spec = array(" (around line 1213 in 2.3.1) and replace it (including the following 3 lines) with: $spec = array( 0 => array('pty'), 1 => array('pty'), 2 => array('pty') ); Does this help? Otherwise we'll probably have to use "doveadm pw -p foobar" with the password on the commandline. However I don't like this idea because the password will be visible in the processlist for a short time then :-( ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=3034389&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2010-12-30 13:26:38
|
Bugs item #3147967, was opened at 2010-12-30 04:57 Message generated for change (Comment added) made by christian_boltz You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=3147967&group_id=191583 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None >Status: Closed >Resolution: Fixed Priority: 5 Private: No Submitted By: Valkum (valkum) Assigned to: Nobody/Anonymous (nobody) Summary: Wiki Syntax Problem Initial Comment: Today i have done many updates to our Wiki On my researched i found http://meta.wikimedia.org/wiki/User:Killiondude/sandbox, a nice modern dynamic layout I changed it a bit and implemented it into our Main Page. Old Page is gone to https://sourceforge.net/apps/mediawiki/postfixadmin/index.php?title=About(need changes) The problem is that MediaWiki ignores some closing div tags which destroys the whole template. (Page, Edit, etc. is moved up) Can someone watch over the code and correct it? BTW: Would be nice if someone could change the colors to our Postfixadmin colors. p.s. Under Template:Newest Version you can find the News Version Table. Thanks Rudi ---------------------------------------------------------------------- >Comment By: Christian Boltz (christian_boltz) Date: 2010-12-30 14:26 Message: meta.mediawiki.org probably has more MediaWiki extensions installed than sourceforge - see for example the <poem> tags that are displayed on our main page. I somehow doubt that sourceforge will install every extension we ask for - therefore we'll probably have to live with some restrictions. On the positive side, we can override the CSS code in MediaWiki:Common.css. I just gave you admin permissions on the wiki - if you want, you can adjust the CSS yourself ;-) I also fixed the </div> problems. Basically you had a </div> at the wrong place. I also removed some <span> tags that made the code more complicated without providing a real value. See https://sourceforge.net/apps/mediawiki/postfixadmin/index.php?title=Main_Page&diff=86&oldid=81 for details about my changes. In general, I'd propose to avoid using HTML code in the wiki (unless really needed, of course, and the main page might be an exception). I'm closing this ticket as "mostly fixed" - only the CSS changes are not done yet. If you want a reminder for them, please open a small new ticket ;-) ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=3147967&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2010-12-30 03:57:01
|
Bugs item #3147967, was opened at 2010-12-30 04:57 Message generated for change (Tracker Item Submitted) made by valkum You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=3147967&group_id=191583 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Valkum (valkum) Assigned to: Nobody/Anonymous (nobody) Summary: Wiki Syntax Problem Initial Comment: Today i have done many updates to our Wiki On my researched i found http://meta.wikimedia.org/wiki/User:Killiondude/sandbox, a nice modern dynamic layout I changed it a bit and implemented it into our Main Page. Old Page is gone to https://sourceforge.net/apps/mediawiki/postfixadmin/index.php?title=About(need changes) The problem is that MediaWiki ignores some closing div tags which destroys the whole template. (Page, Edit, etc. is moved up) Can someone watch over the code and correct it? BTW: Would be nice if someone could change the colors to our Postfixadmin colors. p.s. Under Template:Newest Version you can find the News Version Table. Thanks Rudi ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=3147967&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2010-12-30 00:39:30
|
Bugs item #3145450, was opened at 2010-12-26 23:20 Message generated for change (Comment added) made by christian_boltz You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=3145450&group_id=191583 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Core Group: SVN (please specify revision!) Status: Open Resolution: None Priority: 7 Private: No Submitted By: Valkum (valkum) Assigned to: Nobody/Anonymous (nobody) Summary: pacrypt fail in cli Initial Comment: when userhandler.php calles pacrypt and the crypt method is dovecot:* dovecot prints an "Enter New Password" on console. When i checked random=true dovecot should not ask for an password. this bug has to do with some problems when calling dovecotpw ---------------------------------------------------------------------- >Comment By: Christian Boltz (christian_boltz) Date: 2010-12-30 01:39 Message: See also https://sourceforge.net/tracker/?func=detail&aid=3034389&group_id=191583&atid=937964 - basically the same bug, but "only" for dovecot 2.x/doveadm. ---------------------------------------------------------------------- Comment By: Valkum (valkum) Date: 2010-12-27 23:28 Message: Should be wirte an php equvivalent of the source code in dovecots repo? here the link to the btw outdated dovecotpw. The new command is doveadm pw http://hg.dovecot.org/dovecot-2.0/file/ff1665db118c/src/util/dovecotpw.c ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=3145450&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2010-12-27 22:28:27
|
Bugs item #3145450, was opened at 2010-12-26 23:20 Message generated for change (Comment added) made by valkum You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=3145450&group_id=191583 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Core Group: SVN (please specify revision!) Status: Open Resolution: None >Priority: 7 Private: No Submitted By: Valkum (valkum) Assigned to: Nobody/Anonymous (nobody) Summary: pacrypt fail in cli Initial Comment: when userhandler.php calles pacrypt and the crypt method is dovecot:* dovecot prints an "Enter New Password" on console. When i checked random=true dovecot should not ask for an password. this bug has to do with some problems when calling dovecotpw ---------------------------------------------------------------------- >Comment By: Valkum (valkum) Date: 2010-12-27 23:28 Message: Should be wirte an php equvivalent of the source code in dovecots repo? here the link to the btw outdated dovecotpw. The new command is doveadm pw http://hg.dovecot.org/dovecot-2.0/file/ff1665db118c/src/util/dovecotpw.c ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=3145450&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2010-12-26 22:20:49
|
Bugs item #3145450, was opened at 2010-12-26 23:20 Message generated for change (Tracker Item Submitted) made by valkum You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=3145450&group_id=191583 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Core Group: SVN (please specify revision!) Status: Open Resolution: None Priority: 5 Private: No Submitted By: Valkum (valkum) Assigned to: Nobody/Anonymous (nobody) Summary: pacrypt fail in cli Initial Comment: when userhandler.php calles pacrypt and the crypt method is dovecot:* dovecot prints an "Enter New Password" on console. When i checked random=true dovecot should not ask for an password. this bug has to do with some problems when calling dovecotpw ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=3145450&group_id=191583 |
|
From: SourceForge.net <no...@so...> - 2010-12-25 14:27:59
|
Bugs item #2706290, was opened at 2009-03-23 15:48 Message generated for change (Comment added) made by christian_boltz You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=2706290&group_id=191583 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Interface (example) Group: v 2.3 >Status: Closed >Resolution: Fixed Priority: 5 Private: No Submitted By: Jakub Sykora (kubajz) Assigned to: Nobody/Anonymous (nobody) Summary: create alias doesn't allow more than one target Initial Comment: Virtual List->Add Alias does not allow to input comma separated list in the field TO even though it is legal to deliver mail to more than one target. ---------------------------------------------------------------------- >Comment By: Christian Boltz (christian_boltz) Date: 2010-12-25 15:27 Message: Patch (and some additional fixes, see commit message for details) commited to SVN r898 (2.3 branch) and r900 (trunk). ---------------------------------------------------------------------- Comment By: Christian Boltz (christian_boltz) Date: 2010-12-16 01:07 Message: https://sourceforge.net/projects/postfixadmin/forums/forum/676076/topic/4004442 contains a patch from anexius. ---------------------------------------------------------------------- Comment By: Christian Boltz (christian_boltz) Date: 2009-04-09 23:33 Message: Well, the correct fix is to allow multiple alias targets at alias creation ;-) ---------------------------------------------------------------------- Comment By: Jakub Sykora (kubajz) Date: 2009-03-23 16:35 Message: Thanks, it works. Maybe a message - You can add more addreses by editing this alias later - would be a simplest fix... ---------------------------------------------------------------------- Comment By: GingerDog (gingerdog) Date: 2009-03-23 16:24 Message: Hi, Once you've created an alias, you can then go in to edit it - at which point you can specify multiple addresses. Yes, the interface for creating an alias should really be fixed.... ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=2706290&group_id=191583 |