Skip to content
Snippets Groups Projects
Commit a3c44885 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Add -D and -T options to allow setting message date (or date *and* time)

Examples:
"-D02/29/25"
"-T02 Feb 1996 03:04:05 GMT"
"-TDecember 17, 1995 03:24:00"
"-T1995-12-17T03:24:00"

The system's configured time zone is always used however.
parent 8f5e422e
No related branches found
No related tags found
No related merge requests found
......@@ -21,6 +21,8 @@ function usage()
print("\t-f<name> set 'from' user name");
print("\t-e<number> set 'from' user number");
print("\t-s<subject> set 'subject'");
print("\t-D<date> set message date in numeric format");
print("\t-T<date/time> set message date and time in string format supported by JS Date()");
print("\t-d use default values (no prompt) for to, from, and subject");
print("\t-F set file request attribute flag");
print();
......@@ -63,6 +65,18 @@ for(var i in argv) {
if(val.length)
import_fname = val;
break;
case 'D':
if(val.length) {
hdrs.when_written_time = system.datestr(val);
hdrs.when_written_zone = system.timezone;
}
break;
case 'T':
if(val.length) {
hdrs.when_written_time = new Date(val).valueOf() / 1000;
hdrs.when_written_zone = system.timezone;
}
break;
case 'd':
hdrs.to = "All";
hdrs.from = system.operator;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment