Joao Pedro Pedroso | 6 Jun 2013 14:45
Picon
Favicon

[mew-int 3149] customizing behavior of reply

Hello,

I have several e-mail addresses and I am using mew for doing all my
mail, which I store in a central place.

I would like to set up mew so that when I reply to a message, the
'From:' field in the draft is automatically set to the recipient
address of the original message.

For example: when replying to a message sent to 'jpp <at> a.mail', the
'From:' field would be set to 'jpp <at> a.mail'; but when replying to a
message sent to 'myself <at> other.mail', the 'From:' field would be set to
'myself <at> other.mail'.

I know that I can do it manually with 'cases', but I keep forgetting
changing, and often send messages with wrong addresses.

Thanks,

J.Pedro

Thomas Danckaert | 6 May 2013 15:33
Picon

[mew-int 3145] IMAP LIST

Hello,

when retrieving IMAP folders using "C-u Z", for one of my e-mail
accounts, mew returns a list of _all_ contents of my entire home
directory (e.g. ~/Pictures/cat.jpg, ...).  All these directories will
then appear when using tab-completion on an e-mail folder.  I would
prefer to get only the subfolders of ~/Mail", as that is where I
actually store my e-mail.

The IMAP command sent by mew is (for example)

wwik8226 LIST "" *

and to get the desired result, this should be

wwik8226 LIST "Mail/" *

Is it possible using Mew configuration?  For the NAMESPACE command, 
my server returns
"* NAMESPACE (("" "/")) NIL NIL"

I've looked at the corresponding function in mew-imap.el:

(defun mew-imap-command-list (pro pnm)
   (mew-net-status (mew-imap-get-status-buf pnm)
		  "Listing"
		  nil
		  (mew-imap-secure-p pnm))
   (let* ((my-prefix (mew-imap-get-my-prefix pnm))
	 (case (mew-imap-get-case pnm))
(Continue reading)

maxigas | 6 May 2013 09:50
Gravatar

[mew-int 3144] encrypted only

hi,

is there a way to prevent mew from sending unencrypted messages to certain addresses?

thanks,

maxigas, kiberpunk

When people say “society” i usually ask myself who the fuck is this society. ~ Angelo Lucia

--

 * *  |metatron
*   * |research
 * *  |unit

FA00 8129 13E9 2617 C614  0901 7879 63BC 287E D166

Petter Gustad | 18 Apr 2013 18:14

[mew-int 3142] Suggested method for reading HTML in Emacs?


What is the suggested method/setup to read HTML multiparts in an Emacs
frame?

I'm using Emacs 24.2.1 and Mew 6.5.

Thanks!
//Petter

Michael Ernst | 15 Apr 2013 17:04
Favicon

[mew-int 3141] mew-attach-duplicate binds completion-ignored-extensions to nil

Why does mew-attach-duplicate bind completion-ignored-extensions to nil?
This overrides a user's preferences as to which files to present when doing
completion.

(It also triggers a bug in Ubuntu's version of the w3m-el package.  w3m-el
includes an old version of regexp-opt.el that suffers an infinite recursion
when executing (regexp-opt nil).  I can work around that by running "sudo
apt-get remove w3m-el".)

		    -Mike

Thomas Danckaert | 23 Mar 2013 15:37
Picon

[mew-int 3139] maildir configuration

Hello,

I'm having some trouble getting mew to work with a maildir.  I use getmail4 to download messages to a maildir
at ~/gmail-archive

I have the following configuration in my mew.el

(setq mew-config-alist
      '(
      ;; various other mailboxes
        ("archive"
         ("proto" . "+")
         ("mailbox-type" . "mbox")
         ("mbox-command" . "incm")
         ("mbox-command-arg" . "-a -d /path/to/gmail-archive")
         )))

However, visiting +inbox; pressing s, and choosing "update" doesn't cause incm to fetch the messages from
my maildir to +inbox.  When I run "incm" manually from a terminal like this:

~/Mail/inbox$ incm -u -d ~/gmail-archive/

the messages do end up in my inbox.  Does anybody have an idea where the problem might be?

Thomas

Charles Muller | 20 Feb 2013 04:54
Picon

[mew-int 3137] handling multiple smtp settings in one config file

I'm trying to set up a way for the
mailer to use different SMTP settings from within the same configuration 
file (which I am syncing among my various machines) depending on which 
machine
it's running on. I found an Emacs function called file-exists which
is supposed to test for the presence of a file, and so I tried to use 
this by I am
putting a differently-named empty file in my root directory on the 
different machines
that is intended to trigger the change. What I've written is like this:

(if (file-exists-p "/mail-u-tokyo")
(setq mew-smtp-port "25")
(setq mew-smtp-server "mail.l.u-tokyo.ac.jp")
)

(if (file-exists-p "/mail-home")
(setq mew-smtp-port "587")
(setq mew-smtp-server "mail.so-net.ne.jp")
)

But it's not working (probably I don't understand the function of 
file-exists-p). Does anyone have advice as to what I am doing wrong? Or 
perhaps there's a better way of doing this?

Regards,

Charles
--

-- 

(Continue reading)

Bernhard Assmann | 19 Feb 2013 14:06

[mew-int 3136] IMAP folder creation an Groupwise server

Hi,

I've got a problem creating a new IMAP folder on the server side. The server
is a Groupwise server. This is the output of the Mew debug buffer:

<=SEND=>
sxqq2483 UID COPY 388948 "New/Folder"

<COPY>
sxqq2483 NO UID COPY [TRYCREATE] Mailbox not found: New/Folder

<=SEND=>
hwnq2462 LOGOUT

And this is the output when I use a Cyrus IMAP server:

<=SEND=>
lxvo9220 UID COPY 24429 "New/Folder"

<COPY>
lxvo9220 NO [TRYCREATE] Mailbox does not exist

<=SEND=>
fpcf3579 CREATE "New/Folder"

<CREATE>
fpcf3579 OK Completed

<=SEND=>
klem2665 UID COPY 24429 "New/Folder"
(Continue reading)

Kazu Yamamoto | 13 Feb 2013 06:33
Picon
Gravatar

[mew-int 3135] blackout

Hello,

Due to planned blackout, Mew.org will not be available for this
weekend. Sorry for your inconvenience.

--Kazu

Kazu Yamamoto | 12 Feb 2013 05:42
Picon
Gravatar

[mew-int 3134] preserving the original charset of a attach file

Hello,

I have implemented a feature to preserve the original charset of a
attach file. Pulling from github and setting

	(setq mew-draft-keep-text-charset t)

enables this feature. 

For instance, UTF-8 files are always attached as UTF-8 files if 
this feature is enabled. Only line delimiters are converted.

--Kazu

Michael Steiner | 26 Jan 2013 17:24
Picon

[mew-int 3132] Search based on recoll

Hi,

I'm a happy user of Mew for quite a while --- thanks to everybody
contributing to it! -- and used in the past Hyper Estraier for
searching mails which worked fairly well.

However, as i recently started indexing my system with recoll, with a
sub-index specially for mail, i wonder whether anybody has integrated
recoll into mew? Doing so would save me considerable disk-space (i
have email back 20 years :-) and/or save me from hacking mew-search.el
:-)

thanks

-michael-



Gmane