Mercurial > noffle
view debian/slrn.sl @ 500:614a3177b15c noffle tip
Add mail-from option.
Some modern mail systems will try and ensure the sender email is a legitimate
address. Which will fail if there isn't such an address.
author | Jim Hague <jim.hague@acm.org> |
---|---|
date | Wed, 14 Aug 2013 12:04:39 +0100 |
parents | 3b5b7f3fd71f |
children |
line wrap: on
line source
% SLRN script for better interplay with NOFFLE news server. % Redefines some keys for opening articles without modifying flags. define my_article_linedn() { call ( "article_linedn" ); if (is_substr(extract_article_header("X-NOFFLE-Status"), "NOT_DOWNLOADED")) set_header_flags( ( get_header_flags() | HEADER_READ ) xor HEADER_READ ); return; } define my_scroll_dn() { call ( "scroll_dn" ); if (is_substr(extract_article_header("X-NOFFLE-Status"), "NOT_DOWNLOADED")) set_header_flags( ( get_header_flags() | HEADER_READ ) xor HEADER_READ ); return; } define my_hide_article() { call ( "hide_article" ); if (is_substr(extract_article_header("X-NOFFLE-Status"), "NOT_DOWNLOADED")) set_header_flags( ( get_header_flags() | HEADER_READ ) xor HEADER_READ ); return; } definekey( "my_article_linedn", "\r", "article" ); definekey( "my_scroll_dn", " ", "article" ); definekey( "my_hide_article", "h", "article" );