View | Details | Raw Unified | Return to bug 11856
Collapse All | Expand All

(-)a/misc/cronjobs/advance_notices.pl (-2 / +3 lines)
Lines 91-97 the patrons are printed to standard out. Link Here
91
91
92
Defines the maximum number of days in advance to send advance notices.
92
Defines the maximum number of days in advance to send advance notices.
93
93
94
=item B<-c>
94
95
96
Confirm flag: Add this option. The script will only print a usage
97
statement otherwise.
95
98
96
=item B<--itemscontent>
99
=item B<--itemscontent>
97
100
Lines 160-166 messages to patrons when their messages are overdue. Link Here
160
163
161
# These are defaults for command line options.
164
# These are defaults for command line options.
162
my $confirm;                                                        # -c: Confirm that the user has read and configured this script.
165
my $confirm;                                                        # -c: Confirm that the user has read and configured this script.
163
# my $confirm     = 1;                                                # -c: Confirm that the user has read and configured this script.
164
my $nomail;                                                         # -n: No mail. Will not send any emails.
166
my $nomail;                                                         # -n: No mail. Will not send any emails.
165
my $mindays     = 0;                                                # -m: Maximum number of days in advance to send notices
167
my $mindays     = 0;                                                # -m: Maximum number of days in advance to send notices
166
my $maxdays     = 30;                                               # -e: the End of the time period
168
my $maxdays     = 30;                                               # -e: the End of the time period
167
- 

Return to bug 11856