Re: unable to use IMAP
hi, like you, I am also not familiar with locale issues. But i did some checking and I found that the LANG environment variable is set to "C". also I wrote a test program which uses the SKIPWS macro from protos.h in mutt source code and it works fine. It works fine. So I feel that it is not a locale issue. I ran mutt in gdb. I noticed that the 2nd argument imap_parse_fetch() was something like s=0x45 which might be the problem. Anyway I will look into it during the weekend. BTW, I notice that whenever I access the mailserver using IMAP, a mail Mail System Internal Data DON'T DELETE THIS MESSAGE -- FOLDER INTERNAL DATA gets created. Why? Thanks in advance, Raju On Thu, Oct 14, 1999 at 10:54:03PM -0400, Brendan Cully [[EMAIL PROTECTED]] wrote: > On Thursday, 14 October 1999 at 12:50, Edmund GRIMLEY EVANS wrote: > > > > mutt_socket_write():a0004 FETCH 1:5 (FLAGS INTERNALDATE RFC822.SIZE >BODY.PEEK[HEADER.FIELDS (DATE FROM SUBJECT TO CC MESSAGE-ID REFERENCES CONTENT-TYPE >IN-REPLY-TO REPLY-TO)]) > > > > mutt_socket_read_line_d():* 1 FETCH (FLAGS () INTERNALDATE "12-Oct-1999 >11:18:49 +0530" RFC822.SIZE 2865 BODY[HEADER.FIELDS ("DATE" "FROM" "SUBJECT" "TO" >"CC" "MESSAGE-ID" "REFERENCES" "CONTENT-TYPE" "IN-REPLY-TO" "REPLY-TO")] {414} > > > > fetching message 1 > > > > mutt_socket_read_line_d():) > > > > imap_parse_fetch(): bogus FLAGS entry: > > > > imap_open_mailbox(): msgcount is 0 > > > > > > something's up here. Maybe the FLAGS () line is getting misparsed. It > > > shouldn't be since that's not an unusual response. I'll take a look - > > > er, not this weekend since I am travelling. a bit later. Thanks for the > > > report... > > > > I looks a bit like SKIPWS is skipping all characters. Are you using > > isspace() at all? I don't think you should. The ctype stuff depends on > > the locale; it can easily be broken, and the definition of white space > > in the RFCs isn't supposed to depend on the user's locale ... > > Indeed SKIPWS is using isspace()! Thanks for the pointer - I'm > completely ignorant about locale issues... > > Raju, are you setting any locale information? Can you try using the C > locale and see if you can read your inbox? > > Thanks, > Brendan > -- > Brendan Cully <[EMAIL PROTECTED]> | OLD SKOOL ROOLZ > "I hope I don't win| .-_|\ > The rules say to bring a friend | / \ > I don't have any" | Perth ->*.--._/
Re: unable to use IMAP
On Fri, Oct 15, 1999 at 12:06:08PM +0530, Raju K V wrote: > BTW, I notice that whenever I access the mailserver using IMAP, a mail > Mail System Internal Data DON'T DELETE THIS MESSAGE -- FOLDER INTERNAL > DATA > gets created. Why? > Yes, it's a pain in the *** in my opinion. Apparently it's created by the IMAP utility code. tkrat (GUI MUA I'm playing with) knows that the message is to be ignored and doesn't display it, however mutt does show it. -- Chris Green ([EMAIL PROTECTED]) Home: [EMAIL PROTECTED] Work: [EMAIL PROTECTED] WWW: http://www.isbd.co.uk/
Re: managing folders
On Tue, Oct 12, 1999 at 09:37:08 -0700, Larry Fletcher wrote: > Is there any way to expire messages in selected folders similar to > the way messages in newsgroups are expired? Yes, you can use the "delete-pattern" command with a pattern to give the oldest messages. E.g. to delete all messages received more than 20 days ago type "D~r>20d" and enter. Or you can bind the key sequence to a key with a macro: macro index E "D~r>20d" "Expire messages older than 20 days" > Or to limit the number > of messages a folder will hold, so when new messages are added old > messages scroll off? No, I don't see how this could be done. -- Byrial
Re: managing folders
Byrial Jensen <[EMAIL PROTECTED]> wrote on Fri, 15 Oct 1999: > > Or to limit the number > > of messages a folder will hold, so when new messages are added old > > messages scroll off? > > No, I don't see how this could be done. If the messages are saved in the folder with a filtering program such as procmail or maildrop, it might be possible to create a folder-injection program that ensures this, and use that for saving the mail from procmail or maildrop. But that's got nothing to do with Mutt anymore... 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 / For a reply, send a self-abused stomped antelope to [EMAIL PROTECTED]
Re: managing folders
Mikko Hänninen <[EMAIL PROTECTED]> wrote: > > > > Or to limit the number of messages a folder will hold, so when new > > > messages are added old messages scroll off? > > If the messages are saved in the folder with a filtering program > such as procmail or maildrop, it might be possible to create a > folder-injection program that ensures this If using maildir format folders, one could easily create a cron job that counts how many messages are in the folder, and then deletes the oldest of them, based on timestamps. -- David DeSimone | "The doctrine of human equality reposes on this: [EMAIL PROTECTED] | that there is no man really clever who has not Hewlett-Packard | found that he is stupid." -- Gilbert K. Chesterson UX WTEC Engineer |PGP: 5B 47 34 9F 3B 9A B0 0D AB A6 15 F1 BB BE 8C 44
X-Confirm-Reading?
Hi, I got an email today with the following line in the header: X-Confirm-Reading-To: from somebody using Pegasus/Win. I guess this is a request to the receiving MUA to send back an ACK upon opening the message, and I just wanted to make sure Mutt is not (at least by default) part of this conspiracy against privacy. Thanks, Stasinos
Re: X-Confirm-Reading?
On Fri, Oct 15, 1999 at 08:24:05PM +0200, Stasinos Konstantopoulos wrote: > X-Confirm-Reading-To: > > from somebody using Pegasus/Win. I guess this is a request to the > receiving MUA to send back an ACK upon opening the message, and I just > wanted to make sure Mutt is not (at least by default) part of this > conspiracy against privacy. Have you tried actually looking at the source? find . -type f | xargs grep -i confirm-reading Nothing there. -- Manoj Kasichainula - manojk at io dot com - http://www.io.com/~manojk/
Re: managing folders
On Oct 15, 1999, Byrial Jensen wrote: > > Is there any way to expire messages in selected folders similar to > > the way messages in newsgroups are expired? > > Yes, you can use the "delete-pattern" command with a pattern to > give the oldest messages. E.g. to delete all messages received more > than 20 days ago type "D~r>20d" and enter. Or you can bind the key > sequence to a key with a macro: > > macro index E "D~r>20d" "Expire messages older than 20 days" Thanks! This isn't the completely automated solution I was looking for, but it's definitely a step in the right direction. Larry
Re: managing folders
On Oct 15, 1999, David DeSimone wrote: > Mikko Hänninen <[EMAIL PROTECTED]> wrote: > > > > > > Or to limit the number of messages a folder will hold, so when new > > > > messages are added old messages scroll off? > > > > If the messages are saved in the folder with a filtering program > > such as procmail or maildrop, it might be possible to create a > > folder-injection program that ensures this > > If using maildir format folders, one could easily create a cron job that > counts how many messages are in the folder, and then deletes the oldest > of them, based on timestamps. This sounds interesting. I wonder if there's an easy way to calculate the current date minus a number of days and then delete all the files in a directory that are older or equal to that date. It looks like I'll have to do some reading. Thanks! Larry
Re: managing folders
> > If using maildir format folders, one could easily create a cron job that > > counts how many messages are in the folder, and then deletes the oldest > > of them, based on timestamps. > > This sounds interesting. I wonder if there's an easy way to calculate > the current date minus a number of days A trivial task for GNU date. Part of GNU sh-utils. > and then delete all the files > in a directory that are older or equal to that date. It looks like I'll > have to do some reading.
Re: managing folders
1999-10-15-16:06:11 Larry Fletcher: > I wonder if there's an easy way to calculate the current date minus a number > of days and then delete all the files in a directory that are older or equal > to that date. find a_directory -mtime +number_of_days -print0|perl -0 -lne unlink There are other ways, but that's the one I find easy. -Bennett
[postmaster@wipinfo.soft.net: ]
Several times a day i get this email in my mailbox!! Is there an operator on this mailing list who can take care that this stops??? Its very annoying! btw. Its some kind of bounce of an email i once posted to this list succesfully with Mutt 1.0pre3us (1999-09-25) :-) thanks, jan - Forwarded message from [EMAIL PROTECTED] - From: [EMAIL PROTECTED] To: "@vayu":@vayu.wipinfo.soft.net:[EMAIL PROTECTED] Report-Version: 2 >To: [EMAIL PROTECTED] Date: Sat Oct 16 02:09:19 1999 End-of-Header: From: [EMAIL PROTECTED] Subject: Re: how to play a soundfile for incoming mail? To: [EMAIL PROTECTED] >From [EMAIL PROTECTED] Sun Oct 10 18:09:21 +0200 1999 >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] >From: [EMAIL PROTECTED] Date: Sun, 10 Oct 1999 18:09:21 +0200 >From: Jan Houtsma <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] Mail-Followup-To: [EMAIL PROTECTED] X-Mailer: Mutt 1.0pre3us On Sat, Oct 09, 1999 at 01:09:37PM -0700, Shawn D. McPeek wrote: > > xbuffy can do this. > > Check out http://www.fiction.net/blong/programs/#xbuffy > > Shawn > > Previously, Jan Houtsma wrote: > :> Is it possible to play a soundfile when email comes in. > :> > :> Even more can i play a different sound for each mailbox that > :> i have listed in my .muttrc? > :> > :> thanks, > :> > :> jan > > -- > Xerox never comes up with anything original. Well, i think mutt already checks the mailboxes, since it already beeps when mail comes in, so why have another program check it as well? Doesnt mutt allow some hook to define a soundfile i.s.o. the beep? thanks, jan - End forwarded message -
Re: Sending unedited messages
On 991001, at 19:16:42, Staffan Hämälä wrote: > Is it possible to disable the question "do you want to cancel this..." > that pops up after exiting the editor without making any changes? > That question is a bit annoying when I do want to send the message > (eg mailinglist commands, test messages, etc). If I really meant to > cancel the message I can still use 'q' to abort. Try: set abort_unmodified=no -- David Ellement
bug
Using mutt version: Mutt 0.95.6i (1999-06-03) I sent out mail to a long list of friends, and part of the list got cut. I used the completion feature to get the list of my entire address book, from which I scrolled down and selected people. It was > 120 people and I am sure it exceeded the 5k buffer that has been set aside for this purpose, in this and more recent versions. Manish -- Manish J. Bhatt Phone: 805.544.1089 COM DEV Wireless, Inc.http://www.comdev.cc
[PATCH] options highlight_unread and delete_tilde
Hi, I created two new options for mutt, which I believe are useful for a lot of people. * delete_tilde: Some editors don't behave: They leave backup files with a tilde laaying around. If set, mutt takes care of those ... * highlight_unread: As the color index option does not parse the flags, it is not possible to highlight unread messages with color index. highlight_unread will do it ... For both problems, more general approaches could have been taken. But those are still nice options ... Patch is against 1.0pre3 PS: Please Cc: answers, as I'm not subscribed. -- Kurt Garloff <[EMAIL PROTECTED]> Wuppertal, FRG PGP2 key: See mail header, key serversLinux kernel development SuSE GmbH, Nürnberg, FRG SCSI drivers: tmscsim(DC390), DC395 diff -uNr mutt-1.0pre3/ChangeLog mutt-1.0pre3.new/ChangeLog --- mutt-1.0pre3/ChangeLog Sat Sep 25 09:06:06 1999 +++ mutt-1.0pre3.new/ChangeLog Wed Oct 13 22:38:39 1999 @@ -1,0 +1,6 @@ +Wed Oct 13 22:37:12 1999 Kurt Garloff <[EMAIL PROTECTED]> + + * Added two new options: "delete_tilde" to clean up editor + left backup files and "highlight_unread" to display unread + messages in inverse colours in the message index. + diff -uNr mutt-1.0pre3/curs_lib.c mutt-1.0pre3.new/curs_lib.c --- mutt-1.0pre3/curs_lib.c Wed Sep 1 17:39:20 1999 +++ mutt-1.0pre3.new/curs_lib.c Wed Oct 13 22:22:34 1999 @@ -120,12 +120,17 @@ void mutt_edit_file (const char *editor, const char *data) { - char cmd[LONG_STRING]; + char cmd[LONG_STRING], bkup[LONG_STRING]; endwin (); mutt_expand_file_fmt (cmd, sizeof (cmd), editor, data); if (mutt_system (cmd) == -1) mutt_error (_("Error running \"%s\"!"), cmd); + if (option (OPTDELTILDE)) + { +strcpy (bkup, data); strcat (bkup, "~"); +mutt_unlink (bkup); + } keypad (stdscr, TRUE); clearok (stdscr, TRUE); } diff -uNr mutt-1.0pre3/curs_main.c mutt-1.0pre3.new/curs_main.c --- mutt-1.0pre3/curs_main.cThu Aug 26 09:10:01 1999 +++ mutt-1.0pre3.new/curs_main.cWed Oct 13 22:27:04 1999 @@ -1730,11 +1730,15 @@ if (!curhdr) return; + curhdr->pair = ColorDefs[MT_COLOR_NORMAL]; for (color = ColorIndexList; color; color = color->next) if (mutt_pattern_exec (color->color_pattern, M_MATCH_FULL_ADDRESS, ctx, curhdr)) { curhdr->pair = color->pair; + if (option (OPTHILIGHTUNREAD) && !curhdr->read) + { + curhdr->pair |= A_REVERSE; curhdr->pair ^= A_BOLD; + } return; } - curhdr->pair = ColorDefs[MT_COLOR_NORMAL]; } diff -uNr mutt-1.0pre3/doc/manual.sgml.in mutt-1.0pre3.new/doc/manual.sgml.in --- mutt-1.0pre3/doc/manual.sgml.in Sat Sep 11 15:11:10 1999 +++ mutt-1.0pre3.new/doc/manual.sgml.in Wed Oct 13 22:34:36 1999 @@ -2729,6 +2729,14 @@ will automatically be purged without prompting. If set to delete_tilde + +Type: boolean +Default: unset + +When set, mutt cleans up the backup file, many editors leave behind. The name +of the deleted file will be the name of the edited file with a tilde appended. + dsn_notify Type: string @@ -2954,6 +2962,14 @@ domain part to addresses. This variable does not affect the generation, and it will not lead to the cut-off of first-level domains. + +highlight_unread + +Type: boolean +Default: unset + +When set, unread messages will be highlighted by inverting the colors +of the respective line in the message index. history diff -uNr mutt-1.0pre3/init.h mutt-1.0pre3.new/init.h --- mutt-1.0pre3/init.h Thu Sep 2 18:28:42 1999 +++ mutt-1.0pre3.new/init.h Wed Oct 13 22:19:23 1999 @@ -96,6 +96,7 @@ { "date_format", DT_STR, R_BOTH, UL &DateFmt, UL "!%a, %b %d, %Y at %I:%M:%S%p %Z" }, { "default_hook",DT_STR, R_NONE, UL &DefaultHook, UL "~f %s !~P | (~P ~~C %s)" }, { "delete", DT_QUAD, R_NONE, OPT_DELETE, M_ASKYES }, + { "delete_tilde",DT_BOOL, R_NONE, OPTDELTILDE, 0 }, { "dsn_notify", DT_STR, R_NONE, UL &DsnNotify, UL "" }, { "dsn_return", DT_STR, R_NONE, UL &DsnReturn, UL "" }, { "edit_headers",DT_BOOL, R_NONE, OPTEDITHDRS, 0 }, @@ -121,6 +122,7 @@ { "header", DT_BOOL, R_NONE, OPTHEADER, 0 }, { "help",DT_BOOL, R_BOTH, OPTHELP, 1 }, { "hidden_host", DT_BOOL, R_NONE, OPTHIDDENHOST, 0 }, + { "highlight_unread",DT_BOOL, R_NONE, OPTHILIGHTUNREAD, 0 }, { "history", DT_NUM, R_NONE, UL &HistSize, 10 }, { "hostname",DT_STR, R_NONE, UL &Fqdn, 0 }, #ifdef USE_IMAP diff -uNr mutt-1.0pre3/mutt.h mutt-1.0pre3.new/mutt.h --- mutt-1.0pre3/mutt.h Wed Sep 1 22:18:46 1999 +++ mutt-1.0pre3.new/mutt.h Wed Oct 13 22:18:54 1999 @@ -388,7 +388,9 @@ OPTDONTHANDLEPGPKEYS,/* (pseudo) used to extract PGP keys */ #endif - + /* added [EMAIL PROTECTED], 99/10/13 */ + OPTDELTILDE, /* delete editor backup files ~ */ + OPTHILIGHTUNREAD,/* highlight unread messages by inverting them
Re: New email not appearing
On Mon, Oct 04, 1999 at 03:29:35PM -0500, David DeSimone wrote: > [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > > If mutt is running, and I receive new email, mutt doesn't add the > > message to the index list until I hit a key. > > Mutt has a $timeout variable that tells how often it will stop waiting > for a keypress from you, while in the index screen, and then go check > for mail. So if it's set to, say, 30.. then Mutt will wait 30 seconds > for you to press a key, and then go check new mail, and update the > index. If you press a key sooner than that, then Mutt will notice the > mail sooner, but it should always notice eventually, unless $timeout is > set to 0. I'd read about timeout, and thought that I had it set to 60 seconds... turns out it was still set to the default 600 seconds. After adding that to .muttrc it works perfectly. Thanks!
Re: installing mutt without root privilege
Thanks a lot! Now it works - as you can see from my mail header. Sergei On Tue, Oct 05, 1999 at 10:40:05AM +0530, Raju K V wrote: > hi, > > Looks like these undefined variables and defined in libcurses.so.1. Try > removing -lncurses and replacing it with -lcurses in LIBS variable of > your makefile. > > HTH, > Raju > > On Tue, Oct 05, 1999 at 12:22:07PM +0900, Sergei Duzhin [[EMAIL PROTECTED]] wrote: > > > From [EMAIL PROTECTED] Mon Oct 4 19:42 JST 1999 > > > > > > can you send me the entire 'make install' output or that last 20 lines > > > or so? > > > > Here it is: > > > > Script started on Tue Oct 05 12:18:44 1999 > > pross85{duzhin}1: gmake install > > Making install in doc > > gmake[1]: Entering directory `/auto/stdfsv1-f1/home3/duzhin/tmp/mutt-1.0pre3/doc' > > gmake html > > gmake[2]: Entering directory `/auto/stdfsv1-f1/home3/duzhin/tmp/mutt-1.0pre3/doc' > > sgml2html manual > > gmake[2]: sgml2html: Command not found > > gmake[2]: *** [manual.html] Error 127 > > gmake[2]: Leaving directory `/auto/stdfsv1-f1/home3/duzhin/tmp/mutt-1.0pre3/doc' > > gmake[1]: [try-html] Error 2 (ignored) > > gmake manual.txt > > gmake[2]: Entering directory `/auto/stdfsv1-f1/home3/duzhin/tmp/mutt-1.0pre3/doc' > > sgml2txt -c latin manual > > gmake[2]: sgml2txt: Command not found > > gmake[2]: *** [manual.txt] Error 127 > > gmake[2]: Leaving directory `/auto/stdfsv1-f1/home3/duzhin/tmp/mutt-1.0pre3/doc' > > gmake[1]: [try-txt] Error 2 (ignored) > > ../mkinstalldirs /home/professor/duzhin/bin/man/man1 > > /usr/local/bin/install -c -m 644 mutt.man >/home/professor/duzhin/bin/man/man1/mutt.1 > > /usr/local/bin/install -c -m 644 dotlock.man >/home/professor/duzhin/bin/man/man1/mutt_dotlock.1 > > ../mkinstalldirs /home/professor/duzhin/bin/doc/mutt > > for f in manual.txt ; do /usr/local/bin/install -c -m 644 $f >/home/professor/duzhin/bin/doc/mutt ; done > > for f in PGP-Notes.txt applying-patches.txt devel-notes.txt manual.txt ; do >/usr/local/bin/install -c -m 644 ./$f /home/professor/duzhin/bin/doc/mutt ; done > > for f in COPYRIGHT GPL INSTALL ChangeLog README NEWS TODO README.SECURITY ; do >/usr/local/bin/install -c -m 644 ../$f /home/professor/duzhin/bin/doc/mutt ; done > > if [ -f manual.html ] ; then \ > > gmake install-html ; \ > > fi > > gmake[1]: Leaving directory `/auto/stdfsv1-f1/home3/duzhin/tmp/mutt-1.0pre3/doc' > > Making install in intl > > gmake[1]: Entering directory `/auto/stdfsv1-f1/home3/duzhin/tmp/mutt-1.0pre3/intl' > > if test "mutt" = "gettext" \ > >&& test '' = 'intl-compat.o'; then \ > > if test -r ./mkinstalldirs; then \ > > ./mkinstalldirs /home/professor/duzhin/bin/lib >/home/professor/duzhin/bin/include; \ > > else \ > > ../mkinstalldirs /home/professor/duzhin/bin/lib >/home/professor/duzhin/bin/include; \ > > fi; \ > > /usr/local/bin/install -c -m 644 intlh.inst >/home/professor/duzhin/bin/include/libintl.h; \ > > /usr/local/bin/install -c -m 644 libintl.a >/home/professor/duzhin/bin/lib/libintl.a; \ > > else \ > > : ; \ > > fi > > if test "mutt" = "gettext"; then \ > > if test -r ./mkinstalldirs; then \ > > ./mkinstalldirs /home/professor/duzhin/bin/share/gettext/intl; \ > > else \ > > ../mkinstalldirs /home/professor/duzhin/bin/share/gettext/intl; \ > > fi; \ > > /usr/local/bin/install -c -m 644 VERSION >/home/professor/duzhin/bin/share/gettext/intl/VERSION; \ > > dists="ChangeLog Makefile.in linux-msg.sed po2tbl.sed.in xopen-msg.sed gettext.h >gettextP.h hash-string.h libgettext.h loadinfo.h bindtextdom.c dcgettext.c dgettext.c >gettext.c finddomain.c loadmsgcat.c localealias.c textdomain.c l10nflist.c >explodename.c intl-compat.c cat-compat.c"; \ > > for file in $dists; do \ > > /usr/local/bin/install -c -m 644 ./$file >/home/professor/duzhin/bin/share/gettext/intl/$file; \ > > done; \ > > else \ > > : ; \ > > fi > > gmake[1]: Leaving directory `/auto/stdfsv1-f1/home3/duzhin/tmp/mutt-1.0pre3/intl' > > Making install in m4 > > gmake[1]: Entering directory `/auto/stdfsv1-f1/home3/duzhin/tmp/mutt-1.0pre3/m4' > > gmake[2]: Entering directory `/auto/stdfsv1-f1/home3/duzhin/tmp/mutt-1.0pre3/m4' > > gmake[2]: Nothing to be done for `install-exec-am'. > > gmake[2]: Nothing to be done for `install-data-am'. > > gmake[2]: Leaving directory `/auto/stdfsv1-f1/home3/duzhin/tmp/mutt-1.0pre3/m4' > > gmake[1]: Leaving directory `/auto/stdfsv1-f1/home3/duzhin/tmp/mutt-1.0pre3/m4' > > Making install in po > > gmake[1]: Entering directory `/auto/stdfsv1-f1/home3/duzhin/tmp/mutt-1.0pre3/po' > > PATH=../src:$PATH : --default-domain=mutt --directory=.. \ > > --add-comments --keyword=_ --keyword=N_ \ > > --files-from=./POTFILES.in \ > > && test ! -f mutt.po \ > >|| ( rm -f ./mutt.pot \ > > && mv mutt.po ./mutt.pot ) > > if test -r ".././mkinstalldirs"; then \ > > .././mkinstalldirs /home/professor/duzhin/bin/lib; \ > > else \ > > /bin/sh ../mkinstalldirs /home/professor/duzhin/bin/lib; \ > > fi > > installing de.mo as
Re: how to set up alternate SMTP server
Sorry, a bit off topic, but just wondering... So why mutt implements a pop3 protocol? Why do we need this when we have fetchmail? Cheers, Shao. Jeremy Blosser [[EMAIL PROTECTED]] wrote: > Mikko Hänninen [[EMAIL PROTECTED]] wrote: > > Jeremy Blosser <[EMAIL PROTECTED]> wrote on Thu, 07 Oct 1999: > > > AFAIK both things you mention can be dealt with using a minimal MTA that > > > just acts as a forwarder, such as sSMTP. All you really have to do to > > > configure it is set the remote mailhub's hostname. > > > > So how large is sSMTP anyway? Would it be possible to include it with > > mutt? Seems a bit of waste as not everyone needs it, yes, but then > > again if it's small and if some significant number of people would > > benefit from it, then it might be worthwhile. > > I'm sure a significant number of newbies also don't have a terminal program > they like and may not have a working terminal library (ncurses/slang) and > lynx for HTML mails and procmail and heck they might not even have a > working Unix distribution so should we include that too? And don't forget > any libraries each of those things depends on... > > > At the very least, shouldn't sSMTP be linked from somewhere like > > http://www.mutt.org/download.html on the mutt site? (And urlview too, > > while we're at it...) At the moment, the link can be found at the very > > bottom of http://www.mutt.org/links.html, which isn't very promiment. > > It's also indirectly mentioned at the top of that page (in the index for > the rest of the page). I think it's more likely to get lost on the > download page, which is already huge with mirrors. I'm certainly not going > to put it at the top of that page or anything... 99% of the people that go > there want to download Mutt, not something else. > > If you're this concerned about it, write an entry for the FAQ and submit it > to Felix. That's the first place people should be looking for a question > they don't find answered after they read the manual. > > -- > Jeremy Blosser | [EMAIL PROTECTED] | http://jblosser.firinn.org/ > -+-+-- > "If Microsoft can change and compete on quality, I've won." -- L. Torvalds -- Shao Zhang - Running Debian 2.1 ___ _ _ Department of Communications/ __| |_ __ _ ___ |_ / |_ __ _ _ _ __ _ University of New South Wales \__ \ ' \/ _` / _ \ / /| ' \/ _` | ' \/ _` | Sydney, Australia |___/_||_\__,_\___/ /___|_||_\__,_|_||_\__, | Email: [EMAIL PROTECTED] |___/ _
Re: [postmaster@wipinfo.soft.net: ]
Hi! On Fri, Oct 15, 1999 at 11:29:14PM +0200, Jan Houtsma wrote: > Is there an operator on this mailing list who can take care that > this stops??? Its very annoying! Although you didn't include complete headers, it looks like something goes wrong on the wipinfo.soft.net site. I think there is nothing the mutt-users list maintainer can do about this. It should be best to complain directly at [EMAIL PROTECTED] . Gero
Re: [PATCH] options highlight_unread and delete_tilde
On Wed, Oct 13, 1999 at 11:18:04PM +0200, Kurt Garloff wrote: > * delete_tilde: Some editors don't behave: They leave backup files with > a tilde laaying around. If set, mutt takes care of those ... The best way to fix this is to use a wrapper shell script that either uses command-line flags to shut off backup files, or just deletes the backup. Since different editors use different backup file notations, this will handle more cases. And, from a design perspective, mutt shouldn't be cleaning up after the editor. > * highlight_unread: As the color index option does not parse the flags, > it is not possible to highlight unread messages with color index. > highlight_unread will do it ... "color index fgcolor bgcolor ~N" doesn't work for you? "~O" might be necessary if you use mark_old. But this works wonderfully for me. -- Manoj Kasichainula - manojk at io dot com - http://www.io.com/~manojk/
Re: [PATCH] options highlight_unread and delete_tilde
On Fri, Oct 15, 1999 at 05:32:05PM -0500, Manoj Kasichainula <[EMAIL PROTECTED]> wrote: > On Wed, Oct 13, 1999 at 11:18:04PM +0200, Kurt Garloff wrote: [...] > > * highlight_unread: As the color index option does not parse the flags, > > it is not possible to highlight unread messages with color index. > > highlight_unread will do it ... > > "color index fgcolor bgcolor ~N" doesn't work for you? "~O" might be > necessary if you use mark_old. But this works wonderfully for me. Or "~U" should cover both old and new unread messages. -Daniel -- Daniel Eisenbud [EMAIL PROTECTED]
Re: how to set up alternate SMTP server
On Sat, Oct 09, 1999 at 12:05:51AM +, Shao Zhang wrote: > Sorry, a bit off topic, but just wondering... > > So why mutt implements a pop3 protocol? Why do we need this when we have > fetchmail? > ...and why have a pager while we have more and less. I think POP3 was implemented because of IMAP [but I might be completely off here]. IMAP needs to be in a mailer, since otherwise you can't get the advantages of IMAP: only retrieving the header, ... And when IMAP is in, why not POP3? Otherwise it has to be a random choice. Or a 'feeling' that something like that shouldn't belong in the kernel^H^H^H^H^H^Hmutt. Just my f0.05. -- Rutger Nijlunsing, rutger @ null.net - Linux! -- Don't BiCapitalize without extremely good reason: it messes up the natural human-eyeball search order -- Your Friendly Neighborhood Archive Maintainers +31-40 --- ^X^S^X^Cs
Re: how to set up alternate SMTP server
Shao Zhang <[EMAIL PROTECTED]> wrote: > > So why mutt implements a pop3 protocol? Why do we need this when we > have fetchmail? It's not needed. It should be removed. Mutt's POP3 support went in before fetchmail was really existent/stable. -- David DeSimone | "The doctrine of human equality reposes on this: [EMAIL PROTECTED] | that there is no man really clever who has not Hewlett-Packard | found that he is stupid." -- Gilbert K. Chesterson UX WTEC Engineer |PGP: 5B 47 34 9F 3B 9A B0 0D AB A6 15 F1 BB BE 8C 44
Re: managing folders
On Fri, Oct 15, 1999 at 12:38:20 -0700, Larry Fletcher wrote: > On Oct 15, 1999, Byrial Jensen wrote: > > > Is there any way to expire messages in selected folders similar to > > > the way messages in newsgroups are expired? > > > > Yes, you can use the "delete-pattern" command with a pattern to > > give the oldest messages. E.g. to delete all messages received more > > than 20 days ago type "D~r>20d" and enter. Or you can bind the key > > sequence to a key with a macro: > > > > macro index E "D~r>20d" "Expire messages older than 20 days" > > Thanks! This isn't the completely automated solution I was looking for, > but it's definitely a step in the right direction. I think that you can do it automatically with this command: mutt -f folder-to-expire -e 'set delete;push D~r>20dq' -- Byrial