Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Main
Synchronet
Commits
602a2d0e
Commit
602a2d0e
authored
2 years ago
by
Rob Swindell
Browse files
Options
Downloads
Patches
Plain Diff
Updated to be suitable as a /usr/bin/mail[x] replacement too
Migrated rcpt() to mailutil.js parse_mail_recipient()
parent
dfad2d1a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
exec/sendmail.js
+65
-26
65 additions, 26 deletions
exec/sendmail.js
with
65 additions
and
26 deletions
exec/sendmail.js
+
65
−
26
View file @
602a2d0e
#!/sbbs/exec/jsexec -x -c/sbbs/ctrl
// Change previous line to correct jsexec and ctrl paths!
#!/sbbs/exec/jsexec -x
// Change previous line to correct jsexec path!
// Suitable as a replacement for /usr/sbin/sendmail
// and/or /usr/bin/mail
// and/or /usr/bin/mailx
var
log
=
new
File
(
system
.
temp_dir
+
"
sendmail.log
"
);
//log.open('a');
log
.
writeln
(
system
.
timestr
()
+
'
'
+
js
.
exec_file
+
'
argv=
'
+
argv
);
load
(
"
sbbsdefs.js
"
);
load
(
"
mailutil.js
"
);
/* This script emulates the "sendmail
-i -t" or "sendmail -oi -t"
*
*nix command,
sending a message from stdin to recipients specified
/* This script emulates the "sendmail
" or "mail" *nix command,
* sending a message from stdin to recipients specified
* in the message headers and not using . on a line by itself
* to terminate a message.
*/
var
line
;
var
verbosity
=
0
;
var
done_headers
=
false
;
var
hdr
=
{
from
:
'
sendmail
'
};
var
hdr
=
{
from
:
'
sendmail
'
,
subject
:
'
no subject specified
'
};
var
sendmail_mode
=
(
js
.
exec_file
!=
'
mail
'
&&
js
.
exec_file
!=
'
mailx
'
);
var
done_headers
=
!
sendmail_mode
;
var
body
=
''
;
var
rcpt_list
=
[];
function
rcpt
(
str
)
{
return
{
to
:
mail_get_name
(
str
),
to_net_addr
:
mail_get_address
(
str
),
to_net_type
:
NET_INTERNET
};
}
var
parse_options
=
true
;
var
parse_recipients
=
false
;
for
(
var
i
=
0
;
i
<
argv
.
length
;
i
++
)
{
if
(
argv
[
i
][
0
]
==
'
-
'
)
{
if
(
parse_options
&&
argv
[
i
][
0
]
==
'
-
'
)
{
switch
(
argv
[
i
][
1
])
{
case
'
-
'
:
// "Stop processing command flags
// and use the rest of the arguments as addresses."
parse_options
=
false
;
break
;
case
'
v
'
:
verbosity
++
;
break
;
case
'
F
'
:
hdr
.
from
=
argv
[
++
i
];
if
(
sendmail_mode
)
{
if
(
argv
[
i
].
length
>
2
)
hdr
.
from
=
argv
[
i
].
substring
(
2
);
else
hdr
.
from
=
argv
[
++
i
];
}
break
;
case
'
r
'
:
case
'
f
'
:
if
(
argv
[
i
].
length
>
2
)
hdr
.
from_net_addr
=
argv
[
i
].
substring
(
2
);
else
hdr
.
from_net_addr
=
argv
[
++
i
];
break
;
case
'
s
'
:
if
(
!
sendmail_mode
)
hdr
.
subject
=
argv
[
++
i
];
break
;
case
'
t
'
:
parse_recipients
=
true
;
done_headers
=
false
;
break
;
}
}
else
{
rcpt_list
.
push
(
rcp
t
(
argv
[
i
]));
rcpt_list
.
push
(
parse_mail_recipien
t
(
argv
[
i
]));
}
}
if
(
parse_recipients
&&
!
sendmail_mode
)
{
// "Recipients specified on the command line are ignored."
rcpt_list
.
length
=
0
;
}
while
((
line
=
readln
())
!=
undefined
)
{
log
.
writeln
(
line
);
if
(
!
done_headers
)
{
if
(
line
==
''
)
{
done_headers
=
true
;
...
...
@@ -53,23 +86,23 @@ while((line=readln()) != undefined) {
if
(
m
!=
undefined
&&
m
.
index
>-
1
)
{
switch
(
m
[
1
].
toLowerCase
())
{
case
'
to
'
:
if
(
!
parse_recipients
)
break
;
addys
=
m
[
2
].
split
(
'
,
'
);
for
(
addy
in
addys
)
{
rcpt_list
.
push
(
rcp
t
(
addys
[
addy
]));
rcpt_list
.
push
(
parse_mail_recipien
t
(
addys
[
addy
]));
}
break
;
case
'
from
'
:
hdr
.
from
=
mail_get_name
(
m
[
2
]);
hdr
.
from_net_type
=
NET_INTERNET
;
hdr
.
from_net_addr
=
mail_get_address
(
m
[
2
]);
hdr
.
from
=
mail_get_name
(
m
[
2
]);
hdr
.
from_net_addr
=
mail_get_address
(
m
[
2
]);
break
;
case
'
subject
'
:
hdr
.
subject
=
m
[
2
];
break
;
case
'
reply-to
'
:
hdr
.
replyto
=
mail_get_name
(
m
[
2
]);
hdr
.
replyto_net_type
=
NET_INTERNET
;
hdr
.
replyto_net_addr
=
mail_get_address
(
m
[
2
]);
hdr
.
replyto
=
mail_get_name
(
m
[
2
]);
hdr
.
replyto_net_addr
=
mail_get_address
(
m
[
2
]);
break
;
case
'
message-id
'
:
hdr
.
id
=
m
[
2
];
...
...
@@ -81,7 +114,8 @@ while((line=readln()) != undefined) {
hdr
.
date
=
m
[
2
];
break
;
}
}
}
else
print
(
"
Non-header line received:
"
+
line
);
}
else
{
body
+=
line
+
"
\r\n
"
;
...
...
@@ -97,3 +131,8 @@ if(!msgbase.save_msg(hdr, body, rcpt_list)) {
writeln
(
"
Cannot send email:
"
+
msgbase
.
error
);
exit
();
}
log
.
writeln
(
"
---
"
);
log
.
writeln
(
"
hdr =
"
+
JSON
.
stringify
(
hdr
,
null
,
4
));
log
.
writeln
(
"
rcpt_list =
"
+
JSON
.
stringify
(
rcpt_list
,
null
,
4
));
log
.
writeln
(
"
===
"
);
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment