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

Bugfix: actually use the SMB netattr 'HOLD' attribute flag

... when exporting from SMB to .msg ("stored message") file
parent 478d85d2
No related branches found
No related tags found
No related merge requests found
Pipeline #6144 failed
......@@ -1109,6 +1109,8 @@ int create_netmail(const char *to, const smbmsg_t* msg, const char *subject, con
if(msg != NULL) {
if(msg->hdr.netattr&NETMSG_CRASH)
hdr.attr|=FIDO_CRASH;
if(msg->hdr.netattr&NETMSG_HOLD)
hdr.attr|=FIDO_HOLD;
if(msg->hdr.auxattr&MSG_FILEATTACH)
hdr.attr|=FIDO_FILE;
if(msg->hdr.auxattr&MSG_FILEREQUEST)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment