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

Include format=fixed or flowed in exported content-type news header fields

parent ae0cfd9a
No related branches found
No related tags found
No related merge requests found
...@@ -134,7 +134,7 @@ function write_news_header(hdr,writeln) ...@@ -134,7 +134,7 @@ function write_news_header(hdr,writeln)
break; break;
} }
} }
writeln("Content-Type: text/plain; charset=" + charset); writeln("Content-Type: text/plain; charset=" + charset + "; format=" + ((hdr.auxattr & MSG_FIXED_FORMAT) ? "fixed" : "flowed"));
writeln("Content-Transfer-Encoding: 8bit"); writeln("Content-Transfer-Encoding: 8bit");
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment