-
Notifications
You must be signed in to change notification settings - Fork 103
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow to activate pending lists with sympa.pl #645
Conversation
🤔 It lacks a |
- Small change to --open_list to let it handle pending lists - Add --show_pending_lists=robot option to print pending lists (with some informations) Fix sympa-community#637
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
$main::options{'show_pending_lists'}, | ||
$list->{'admin'}{'subject'}, | ||
$list->{'admin'}{'creation'}{'email'}, | ||
$list->{'admin'}{'creation'}{'date_epoch'}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
date_epoch
is Unix time. It would be better to be:
$language->gettext_strftime('%d %b %Y at %H:%M:%S', $list->{'admin'}{'creation'}{'date_epoch'});
No. Well, in fact, if we want to send a notification to the owner, we should (I don’t know if it would be hard). It should be a |
Oh sorry I see. You already have added I'll approve this pr and merge it later. |
--open_list
to let it handle pending lists--show_pending_lists=robot
option to print pending lists (with someinformations)
Fix #637