|
|
Up |
|
|
  |
Author:
Date: Dec 25, 2008 05:32
On Thu, Dec 25 2008, Sivaram Neelakantan wrote:
> The key C-c C-e currently elides a region of text and produces the
> following
[snipped 6 lines, 73 chars]
> Ideally, [...] or [snipped x lines] can be made default with the
> option of the user being able to change the text.
How about the following?
(setq message-elide-ellipsis "\n[snipped %%l lines, %%c chars]\n\n")
(defun rs-message-elide-region (b e)
"Elide the text in the region.
An ellipsis (from `message-elide-ellipsis') will be inserted where the
text was killed."
(interactive "r")
(let ((lines (count-lines b e))
(chars (- e b)))
(kill-region b e)
(insert (format-spec message-elide-ellipsis
`((?l . ,lines)
(?c . ,chars))))))
|
| Show full article (0.84Kb) |
|
| |
1 Comment |
|
  |
|
|
  |
Author: CHENG GaoCHENG Gao
Date: Dec 25, 2008 00:21
*On Sun, 19 Oct 2008 13:34:59 -0400
* Also sprach victor@ algebraic.org (Victor S. Miller):
> I have two different IMAP mailboxes on the same server. How do I set
> up my .gnus and .authinfo to handle them. From reading the
> documentation it appears that gnus seems keyed on the server alone and
> not the server/mailbox pair. Please correct me if I'm wrong.
>
> Victor
You can use labels.
in .gnus
|
| Show full article (0.99Kb) |
|
2 Comments |
|
  |
Author: Sivaram NeelakantanSivaram Neelakantan
Date: Dec 24, 2008 21:06
The key C-c C-e currently elides a region of text and produces the
following
[...]
Can it have some customised options to show the number of lines of
text elided and also some text that the user can add? Something like
[snipped 5 lines]
[5 lines of irrelevant text snipped]
Ideally, [...] or [snipped x lines] can be made default with the
option of the user being able to change the text.
sivaram
--
|
| |
|
2 Comments |
|
  |
Author: Victor S. MillerVictor S. Miller
Date: Dec 24, 2008 08:12
>>>>> "Ted" == Ted Zlatanov lifelogs.com> writes:
Ted> On Sun, 19 Oct 2008 13:40:39 -0400 victor@ algebraic.org (Victor
Ted> S. Miller) wrote:
>>>>>>> "Victor" == Victor S Miller algebraic.org> writes:
Victor> I have two different IMAP mailboxes on the same server. How
Victor> do I set up my .gnus and .authinfo to handle them. From
Victor> reading the documentation it appears that gnus seems keyed on
Victor> the server alone and not the server/mailbox pair. Please
Victor> correct me if I'm wrong.
VSM> I should have mentioned that I want to use both IMAP accounts as
VSM> a mail storage protocol (so that the mail is stored on the remote
VSM> server, and I can just look at individual emails in a similar way
VSM> that I would look at newsgroups). I understand how I can have
VSM> many accounts when I use IMAP as a mail server.
|
| Show full article (1.51Kb) |
|
no comments
|
|
  |
Author: Victor S. MillerVictor S. Miller
Date: Dec 24, 2008 08:10
>>>>> "Ted" == Ted Zlatanov lifelogs.com> writes:
Ted> On Sun, 19 Oct 2008 13:40:39 -0400 victor@ algebraic.org (Victor
Ted> S. Miller) wrote:
>>>>>>> "Victor" == Victor S Miller algebraic.org> writes:
Victor> I have two different IMAP mailboxes on the same server. How
Victor> do I set up my .gnus and .authinfo to handle them. From
Victor> reading the documentation it appears that gnus seems keyed on
Victor> the server alone and not the server/mailbox pair. Please
Victor> correct me if I'm wrong.
VSM> I should have mentioned that I want to use both IMAP accounts as
VSM> a mail storage protocol (so that the mail is stored on the remote
VSM> server, and I can just look at individual emails in a similar way
VSM> that I would look at newsgroups). I understand how I can have
VSM> many accounts when I use IMAP as a mail server.
Ted> I looked at this and you're right, the server address is the
Ted> primary key (together with the port). Can you explain what's
Ted> broken if you just subscribe to both mailboxes? Do the two
Ted> mailboxes have different user names and passwords? Can you use a
|
| Show full article (1.51Kb) |
|
no comments
|
|
  |
Author: Tassilo HornTassilo Horn
Date: Sep 18, 2008 11:23
> Also, I notice that on this list (and on the main emacs list) many of
> you emacs adepts provide doc or code snippets (as below) in a neat
> little formatted block. I assume, being emacs adepts, that you do not
> type in all those little dashes and vertical lines. You have a
> function, surely, that does all the legwork for you. And it's probably
> called something like region-format-as-extract, and you probably have
> a shortcut key for it, like 'C-c fae', and so on. So, how do I do
> that?
|
| |
|
no comments
|
|
  |
Author: Cezar HalmageanCezar Halmagean
Date: Sep 18, 2008 10:52
I have a bunch of emails backed up from Mail.app (apple mail) and I also
have some more in Evolution and I would like to move all of them to
gnus/maildir as I have moved back to linux. Any idea on how I can do
that ?
Thank you.
Cezar
|
| |
|
1 Comment |
|
  |
Author: Phil LordPhil Lord
Date: Sep 18, 2008 09:44
On Sep 14, 4:41 pm, "chrych...@ gmail.com" gmail.com> wrote:
Sorry it didn't work for you, although I'm not surprised. It was a bit
of a hack. For me, it works but only
with cygwin and windows, and not on ubuntu. I'm afraid I don't have
the resources or the knowledge to
fix this up better than currently.
It's a worry for me; my email existence is hanging by the thread of a
bad hack. Some day soon, our
server config will change, and I'll be left without email. I don't
understand why Gnus can read email
straightforwardly with openssl, but not send it. Nor what everyone
else using Gnus to send mail is
doing. Is there another option that I am not aware of?
Phil
|
| |
|
5 Comments |
|
  |
|
|
  |
Author: Ross A. LairdRoss A. Laird
Date: Sep 18, 2008 08:34
Thanks for the help. I figured this was probably in the docs somewhere,
but one of the difficulties I have with gnus (the main difficulty, which
is nested inside the main advantage of gnus) is that there are so many
options and settings that I always have difficulty finding the right
item in the documentation. So, thanks for that.
Also, I notice that on this list (and on the main emacs list) many of
you emacs adepts provide doc or code snippets (as below) in a neat
little formatted block. I assume, being emacs adepts, that you do not
type in all those little dashes and vertical lines. You have a function,
surely, that does all the legwork for you. And it's probably called
something like region-format-as-extract, and you probably have a
shortcut key for it, like 'C-c fae', and so on. So, how do I do that?
Cheers.
Ross
|
| Show full article (1.47Kb) |
|
no comments
|
|
|
|
|