From: pdmef Date: Sat, 27 Aug 2005 06:05:24 +0000 (+0000) Subject: Rocco Rutte: X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=commitdiff_plain;h=e4ebc9b0ae5de07d53d8b0ecf594244e1bc44d0a Rocco Rutte: - kill -D option and -t/-T instead - add arbitrary self-defined header feature via $user_; see manual git-svn-id: svn://svn.berlios.de/mutt-ng/trunk@448 e385b8ad-14ed-0310-8656-cc95a2468c6d --- diff --git a/UPGRADING b/UPGRADING index 84a6002..1677d71 100644 --- a/UPGRADING +++ b/UPGRADING @@ -10,6 +10,16 @@ This document is not the place for verbose documentation; it only offers the necessary keywords to look them up in the manual, ChangeLog or other sources of information. +2005-08-27: + + It's now possible to define and use arbitrary self-defined + variables as long as prefixed with user_. + + The $user_agent variable had to be renamed to $agent_string. + + To keep consistency, the -D option has been removed again in + favor of -T and -t. + 2005-08-25: Instead of only supporting to expand environment variables via diff --git a/VERSION.svn b/VERSION.svn index e9b7520..5379c47 100644 --- a/VERSION.svn +++ b/VERSION.svn @@ -1 +1 @@ -447 +448 diff --git a/contrib/muttngrc.vim b/contrib/muttngrc.vim index 0640154..0c111c9 100644 --- a/contrib/muttngrc.vim +++ b/contrib/muttngrc.vim @@ -76,7 +76,7 @@ syn keyword muttrcVarBool contained reverse_realname rfc2047_parameters save_add syn keyword muttrcVarBool contained sig_dashes sig_on_top smart_wrap sort_re ssl_use_sslv2 ssl_use_sslv3 ssl_use_tlsv1 syn keyword muttrcVarBool contained ssl_usesystemcerts status_on_top strict_threads suspend text_flowed thorough_search syn keyword muttrcVarBool contained thread_received tilde uncollapse_jump use_8bitmime use_domain use_from use_ipv6 -syn keyword muttrcVarBool contained user_agent wait_key weed wrap_search write_bcc +syn keyword muttrcVarBool contained agent_string wait_key weed wrap_search write_bcc syn keyword muttrcVarBool contained noallow_8bit noallow_ansi noarrow_cursor noascii_chars noaskbcc noaskcc syn keyword muttrcVarBool contained noattach_split noauto_tag noautoedit nobeep nobeep_new nobounce_delivered @@ -174,7 +174,7 @@ syn keyword muttrcVarStr contained reply_regexp send_charset sendmail shell sign syn keyword muttrcVarStr contained sort_aux sort_browser spoolfile status_chars status_format tmpdir to_chars tunnel visual " start mutt-ng specific keywords -syn keyword muttrcVarStr contained assumed_charset file_charset nntp_group_index_format header_cache indent_stringing nntp_inews +syn keyword muttrcVarStr contained assumed_charset file_charset nntp_group_index_format header_cache indent_string nntp_inews syn keyword muttrcVarStr contained msgid_format nntp_pass nntp_cache_dir nntp_host nntp_newsrc nntp_user operating_system syn keyword muttrcVarStr contained sidebar_delim signoff_string smtp_pass smtp_user smtp_host xterm_icon syn keyword muttrcVarStr contained xterm_title diff --git a/contrib/sample.muttngrc b/contrib/sample.muttngrc index ac4c422..edddfd5 100644 --- a/contrib/sample.muttngrc +++ b/contrib/sample.muttngrc @@ -426,7 +426,7 @@ set tilde set trash=+papierkorb # Set the User-Agent-Header. -set user_agent +set agent_string # Do not wait for a keypress, if I use a commando like "pipe-message". unset wait_key diff --git a/contrib/sample.muttrc b/contrib/sample.muttrc index d561050..bfc7eb8 100644 --- a/contrib/sample.muttrc +++ b/contrib/sample.muttrc @@ -48,7 +48,7 @@ set help # show the help lines #set history=20 # number of lines of history to remember #set hostname="mutt.org" # my DNS domain set include # always include messages when replying -#set indent_stringing="> " # how to quote replied text +#set indent_string="> " # how to quote replied text #set locale="C" # locale to use for printing time #set mailcap_path="~/.mailcap:/usr/local/share/mailcap" set nomark_old # i don't care about whether a message is old @@ -65,7 +65,7 @@ set pager_index_lines=6 # how many index lines to show in the pager #set pager_stop # don't move to the next message on next-page #set pgp_strict_enc # use Q-P encoding when needed for PGP set postponed=+postponed # mailbox to store postponed messages in -#set post_indent_stringing='---end quoted text---' +#set post_indent_string='---end quoted text---' #set print=ask-yes # ask me if I really want to print messages set print_command=/bin/false # how to print things (I like to save trees) set noprompt_after # ask me for a command after the external pager exits diff --git a/contrib/update-config.pl b/contrib/update-config.pl index 9a57029..1cea17a 100755 --- a/contrib/update-config.pl +++ b/contrib/update-config.pl @@ -50,7 +50,8 @@ my %opts = ( " x_comment_to" => " nntp_x_comment_to", # libesmtp " smtp_auth_username" => " smtp_user", - " smtp_auth_password" => " smtp_pass" + " smtp_auth_password" => " smtp_pass", + " user_agent" => " agent_string" ); if (@ARGV == 0) { diff --git a/doc/manual.sgml.head b/doc/manual.sgml.head index 39bc7a1..5dcbb64 100644 --- a/doc/manual.sgml.head +++ b/doc/manual.sgml.head @@ -1162,7 +1162,7 @@ usually place your to configure Mutt-ng. -Syntax of Initialization Files