Re: formatting and printing messages with long lines
On Sun, Mar 12, 2000 at 03:35:40PM -0500, John P. Verel wrote: > On 03/06/00, 09:24:12PM +0100, [EMAIL PROTECTED] wrote: > > Hello, > > > > I'm searching a solution to properly print messages with paragraphs in long single >lines (in fact, like this one...). > > I use enscript with excellent results. Here's the entry from my > .muttrc file: > > set print_command="enscript -f "Times-Roman11" -F "TimesRoman14" -G -i3" > > Give it a try! > > John > You may also want to look at par. It will reformat the long lines and even keep the > (reply message markers) in place properly. Take a look. Allan -- To steal ideas from one person is plagiarism; to steal from many is research.
Re: Converting Eudora Aliases to Mutt Aliases
On Sat, Mar 11, 2000 at 11:38:10AM -0500, John P. Verel wrote: > I have a long list of Eudora aliases, which look, by and large, to be > in the correct format for import into Mutt. Does anyone have any > tips, suggestions, on the conversion process? > > Thanks. > Hi John, by and large, the files seem to be in the same format. I noted some minor differences, though, that I removed by manual editing, like this: alias bjorksten Prof Bengt Bjorksten <[EMAIL PROTECTED]>,Prof Bengt Bjorksten <[EMAIL PROTECTED]> I have no idea if mutt accepts another 'full name' after an address has been given, so I changed this to: alias bjorksten Prof Bengt Bjorksten <[EMAIL PROTECTED]>,<[EMAIL PROTECTED]> If you ever entered a 'note' to an address in your Eudora address book, you will find it in the nndbase.txt file like this: note bjorksten weitere Adressen I changed this to # bjorksten weitere Adressen And that was it... Best wishes Peter -- Dr Peter Poeml | Institute of epidemiology and social medicine | Domagkstr. 3 | 48149 Muenster, Germany | Tel +49-251-8356296
Message/partial assembling
Hi, Awhile ago I asked about Mutt support for message/partial. The answer was that "not yet, maybe someone will write it some day". So, does anyone know any program which can automatically assemble these parts? I just got an email which has been split into 73 parts, so the "vi filter" doesn't really appeal to me... Regards, Mikko -- // Mikko Hänninen, aka. Wizzu // [EMAIL PROTECTED] // http://www.iki.fi/wiz/ // The Corrs list maintainer // net.freak // DALnet IRC operator / // Interests: roleplaying, Linux, the Net, fantasy & scifi, the Corrs / unzip ; strip ; touch ; finger ; mount ; gasp ; yes ; umount ; sleep
New Mail Polling
I am trying to understand how the status indicator in the folder list (if I'm using the term correctly), gets updated to show new mail in a folder. I've got a half dozen folders created by procmail. My mail_check is set to 5. It often happens that I find new mail within a folder (and new since last opened) but no "N" indicator next to the folder...which is what I desire. I'll appreciate your guidance on this. Thank you. John
Re: Message/partial assembling
Mikko -- ...and then Mikko Hänninen said... % Hi, % % Awhile ago I asked about Mutt support for message/partial. The answer % was that "not yet, maybe someone will write it some day". *grin* % % So, does anyone know any program which can automatically assemble these % parts? I just got an email which has been split into 73 parts, so the % "vi filter" doesn't really appeal to me... I dunno from message/partial, but did you try piping all of the segments thru good old munpack? % % % Regards, % Mikko % -- % // Mikko Hänninen, aka. Wizzu // [EMAIL PROTECTED] // http://www.iki.fi/wiz/ % // The Corrs list maintainer // net.freak // DALnet IRC operator / % // Interests: roleplaying, Linux, the Net, fantasy & scifi, the Corrs / % unzip ; strip ; touch ; finger ; mount ; gasp ; yes ; umount ; sleep I hadn't seen "gasp" before -- and it's not in my system man pages to learn about. I'd always seen that step as "fsck" and "more" :-) :-D -- David T-G * It's easier to fight for one's principles (play) [EMAIL PROTECTED] * than to live up to them. -- fortune cookie (work) [EMAIL PROTECTED] http://www.bigfoot.com/~davidtg/Shpx gur Pbzzhavpngvbaf Qrprapl Npg! The "new millennium" starts at the beginning of 2001. There was no year 0. Note: If bigfoot.com gives you fits, try sector13.org in its place. *sigh* PGP signature
Re: [Announce] mutt-1.1.8 is out
Stephan -- ...and then Stephan Seitz said... % Hi! % % On Sam, Mär 04, 2000 at 02:19:36 +0100, Thomas Roessler wrote % > Mutt-1.1.8 is out. This is another BETA version. Changes % % I would like to know, which patches for 1.0 are part of the new % version. % I am using the save_alias-patch and the compressed_folder-patch. Same here -- as well as a few others. % % The manual for 1.1.8 doesn't mention it, but maybe the patches % will be part of the 1.2-release? They are really useful. I'm not one of the developers, so I can't say with authority, but I'm betting that such "feature patches" will never, or at least not soon, make it into the standard distribution. While mutt *does* do pretty darned much everything, and well, and fast, and so on, there is a constant battle against code bloat and creeping featurism. Since such feature patches are submitted and maintained by their authors, who may or may not be "official developers", and since those authors provide support for them separately, it keeps things simple for the core mutt distribution. :-D -- David T-G * It's easier to fight for one's principles (play) [EMAIL PROTECTED] * than to live up to them. -- fortune cookie (work) [EMAIL PROTECTED] http://www.bigfoot.com/~davidtg/Shpx gur Pbzzhavpngvbaf Qrprapl Npg! The "new millennium" starts at the beginning of 2001. There was no year 0. Note: If bigfoot.com gives you fits, try sector13.org in its place. *sigh* PGP signature
problem with ignore
I ran into a problem with the ignore/unignore commands. It appears that the patterns they accept cannot be regex patterns. This works: ignore * and this works: unignore subject: to: from: but this doesn't work: unignore ^(Subject|To|From): So do the ignore/unignore commands deal with shell globbing only? Would it be a good idea to make both commands use regex patterns? -- Eugene Lee [EMAIL PROTECTED]
Re: problem with ignore
Eugene Lee <[EMAIL PROTECTED]> wrote on Sun, 12 Mar 2000: > So do the ignore/unignore commands deal with shell globbing only? No, they use special kind of wildcards, it's not even shell globbing. For them the rules are: - "*" is a special entry which means "all headers" - "something-" means that every header which starts with "something-", eg. "ignore X-" - everything else is taken literally > Would it be a good idea to make both commands use regex patterns? I'm not sure, what would be the point? Headers aren't exactly random strings... Well, mostly not. :-) If this was made into regexps, it would have to be made into a generic header filter that would scan the actual header lines too, to make some sort of sense. Ie. "I don't want to see Received: headers unless they contain this hostname" or somesuch. IMHO anyway. Regards, Mikko -- // Mikko Hänninen, aka. Wizzu // [EMAIL PROTECTED] // http://www.iki.fi/wiz/ // The Corrs list maintainer // net.freak // DALnet IRC operator / // Interests: roleplaying, Linux, the Net, fantasy & scifi, the Corrs / I wish life had a scroll-back buffer.
Re: formatting and printing messages with long lines
On 03/06/00, 09:24:12PM +0100, [EMAIL PROTECTED] wrote: > Hello, > > I'm searching a solution to properly print messages with paragraphs in long single >lines (in fact, like this one...). I use enscript with excellent results. Here's the entry from my .muttrc file: set print_command="enscript -f "Times-Roman11" -F "TimesRoman14" -G -i3" Give it a try! John > > I've put in my .muttrc the next command : > > set print_command="mpage -1 -f | lpr -" > > Mpage is a program whiwh translates ASCII to PostScript, and can optionnaly add >headers, frames around the text, and so. The option -f results in wrapping long lines >(by default, lines longer than the pagewidth are simply cut). In fact, it works like >the command "pr", and cut the lines everywhere, not only at the boundaries of words >(blank spaces, tabs, - ,etc.). > > A solution is to save such messages, open it with vim, and use the command "gq", >which can properly reformat the paragraphs, wrapping long lines only at the ends of >words. But it's a long work, and it's desirable to find a non-interactive program, a >sort of "pr with enhancements", which can be used in pipes. > > Is somebody knowing that ? > > Thanks. > > Gauthier Vandemoortele > Perwez, Belgium. > > using Mutt 1.0us (1999-10-22) on Linux 2.2.14-15mdk [using ncurses 4.2] > (Mandrake 7)