<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://permalink.gmane.org/gmane.mail.alpine.info">
    <title>gmane.mail.alpine.info</title>
    <link>http://permalink.gmane.org/gmane.mail.alpine.info</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.mail.alpine.info/4951"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.mail.alpine.info/4950"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.mail.alpine.info/4949"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.mail.alpine.info/4948"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.mail.alpine.info/4947"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.mail.alpine.info/4946"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.mail.alpine.info/4945"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.mail.alpine.info/4944"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.mail.alpine.info/4943"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.mail.alpine.info/4942"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.mail.alpine.info/4941"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.mail.alpine.info/4940"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.mail.alpine.info/4939"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.mail.alpine.info/4938"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.mail.alpine.info/4937"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.mail.alpine.info/4936"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.mail.alpine.info/4935"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.mail.alpine.info/4934"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.mail.alpine.info/4933"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.mail.alpine.info/4932"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.mail.alpine.info/4951">
    <title>Re: how to send message with attachment from crontab?</title>
    <link>http://permalink.gmane.org/gmane.mail.alpine.info/4951</link>
    <description>&lt;pre&gt;


Thanks, Eduardo.  I guess I'll just use mutt for now.

In case anyone cares, I found that the newest version of gcalcli (v. 3.1) 
works different, so I rewrote the script:

http://genetsim.org/gcalcli/mail_tomorrow_schedule

I've also expanded a little on what it does.

It isn't about Alpine or email, but if anyone is interested in gcalcli, 
they might want to look at the other scripts that I wrote today:

http://genetsim.org/gcalcli/

The file "description.txt" will give you an idea of how they are used.

Mike
&lt;/pre&gt;</description>
    <dc:creator>Mike Miller</dc:creator>
    <dc:date>2013-05-21T08:34:21</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.mail.alpine.info/4950">
    <title>Re: how to send message with attachment from crontab?</title>
    <link>http://permalink.gmane.org/gmane.mail.alpine.info/4950</link>
    <description>&lt;pre&gt;

Dear Mike,

  Alpine does not do this, unless you patch it. There is patch that does 
this at

http://patches.freeiz.com/alpine/info/outgoing.html

   I hope this helps.

&lt;/pre&gt;</description>
    <dc:creator>Eduardo Chappa</dc:creator>
    <dc:date>2013-05-20T19:48:10</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.mail.alpine.info/4949">
    <title>Re: how to send message with attachment from crontab?</title>
    <link>http://permalink.gmane.org/gmane.mail.alpine.info/4949</link>
    <description>&lt;pre&gt;


One thing I was missint:  That command will start the agenda from the 
current time on the following day, which was not what I wanted.  I wanted 
it to start at 0:00 -- the beginning of the day.  So I needed this 
instead:

gcalcli agenda "$(date -d 'tomorrow 0:00')"

And I have updated the script accordingly:


-----------begin script on next line-----------------------
#!/bin/bash

RECIPIENT=$(whoami)

TMPFILE=$(mktemp /tmp/delete_me.XXXXXX) || exit 1

gcalcli agenda "$(date -d 'tomorrow 0:00')" &amp;gt; $TMPFILE
gcalcli --nc --cals owner agenda "$(date -d 'tomorrow 0:00')" | mutt -s "Schedule for Tomorrow" -a $TMPFILE -- $RECIPIENT

rm -f $TMPFILE
----------end script on previous line----------------------


That's a very important change because I will run the script at the end of 
the day to get the schedule for the following day.  The way I had written 
it, I would never see my important appointments.

Best,
Mike
&lt;/pre&gt;</description>
    <dc:creator>Mike Miller</dc:creator>
    <dc:date>2013-05-20T19:35:57</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.mail.alpine.info/4948">
    <title>how to send message with attachment from crontab?</title>
    <link>http://permalink.gmane.org/gmane.mail.alpine.info/4948</link>
    <description>&lt;pre&gt;I wanted to do this using Alpine, but I figured out how to do it using 
mutt (info below).  I still want to know if Alpine can do this.

I want my system to send me an email message with an attachment at a 
certain time of day.  I see that Alpine has this option:

-attach file        Send mail with the listed file as an attachment.

The problem I'm is that Alpine does not seem to work non-interactively. 
So Alpine always appears on the screen waiting for me to send the message.

Is there a way to make Alpine just send the message without interaction? 
If not, I can't use it from a crontab.

I found a way to do it with mutt:

some_process | mutt -s "my subject" -a file_to_attach -- my_address

The output of "some_process" becomes the message body.

I was seeing some inconsistency in the way mutt is handling a text/plain 
'file_to_attach':  It sometimes uses the wrong charset and alters the 
appearance of the file (specifically messing up the degree symbol °). 
I'd rather have it always use base64 encoding li&lt;/pre&gt;</description>
    <dc:creator>Mike Miller</dc:creator>
    <dc:date>2013-05-20T19:01:15</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.mail.alpine.info/4947">
    <title>Backend mailbox manipulation/parsing tools?</title>
    <link>http://permalink.gmane.org/gmane.mail.alpine.info/4947</link>
    <description>&lt;pre&gt;Hey all,

This isn't strictly alpine related, but as the people on this list tend to 
be some very power-user mail types, I'll ask it.

I use alpine, and other clients.  On alpine, when I want to take an 
action, like report a mail to spamassassin, I use the "pipe" command.

However, as I'm also using iDevices and IMAP (Dovecot), I'm trying to come 
up with ways to control mail flow from those devices.

Specifically, I think that by creating special mailboxes that do things, I 
can dynamically build procmailrc parts, report spam and ham, and other 
cool bits.  So, for example, I'd like to build a "threadkill" folder, 
which would mute a mailing list thread, but let everything else hit my 
inbox.

So here's the question for the group.  What I'm really looking for is a 
tool that can work with a mailbox (UW's "mailutil" might have been such a 
tool), in a dovecot/imap/alpine friendly access format, act on messages in 
a folder, and delete/move.   Ideally I'd do this in perl, and would just 
be looking for a ge&lt;/pre&gt;</description>
    <dc:creator>Dan Mahoney, System Admin</dc:creator>
    <dc:date>2013-05-17T19:26:15</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.mail.alpine.info/4946">
    <title>Re: can't figure out how to imap gmail with alpine2.00 (ala opensuse)</title>
    <link>http://permalink.gmane.org/gmane.mail.alpine.info/4946</link>
    <description>&lt;pre&gt;

My guess is that it needs to be (I have it like this with no problems):
imap.gmail.com/novalidate-cert/ssl/user=xxxx-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org

regards,
Marco

&lt;/pre&gt;</description>
    <dc:creator>Marco Beishuizen</dc:creator>
    <dc:date>2013-05-17T16:35:57</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.mail.alpine.info/4945">
    <title>Re: Re: can't figure out how to imap gmail with alpine2.00 (ala opensuse)</title>
    <link>http://permalink.gmane.org/gmane.mail.alpine.info/4945</link>
    <description>&lt;pre&gt;
Perhaps i'm not using the correct terminology. With imap the email client 
downloads the headers to maildir directory, and then when one reads the email 
it goes to the server and retrieves it. Much quicker than pop. The way i 
use alpine is just to read mail on the server without downloading of 
headers - basically by passing the gmail UI which is what i thought you 
wanted.

Using linux with updates, to me there doesn't seem any point in setting up an 
email client like Thunderbird. I tried it a few weeks ago on my spare machine 
and it was downloading headers for ages - need to do a purge on this email 
address it's got massive. But alpine still retrieves all at speed. The negative 
is that i can't make use of threads (i did try it and it was too slow)... then 
i just switch to the gmail UI to make use of their 'conversations'.

There's probably a better way of customising Alpine but i haven't looked into 
it yet. For deleting and expunging i use the gmail UI.


Perhaps you'd like the MH way that's in Sy&lt;/pre&gt;</description>
    <dc:creator>James Freer</dc:creator>
    <dc:date>2013-05-17T07:41:14</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.mail.alpine.info/4944">
    <title>Re: can't figure out how to imap gmail with alpine 2.00 (ala opensuse)</title>
    <link>http://permalink.gmane.org/gmane.mail.alpine.info/4944</link>
    <description>&lt;pre&gt;

It would appear that on May 15, James Freer did say:


Not sure what you mean by downloading headers... My daughter will usually
access her e-mail via her phone. And sometimes with gmail web user interface.

I'm the one who can't stomach the web UI for long.

But she wants me to occasionally do things she can't currently figure out,
{she has intermittent cognitive issues since the car crash/head trauma} So 
I can expect to have to help her every now and then. In which case I'd
much rather use alpine's UI to find the few she doesn't want to delete
before expunging the rest for her etc... On this occasion she also wanted
stuff from a former friend dumped into a personal quarantine folder.


This is close to what I'd want to do only instead of simply expunging the
stuff she wants gone, I'd prefer to save it to a local folder long enough for
my daughter to tell me I got rid of the right ones...

But even after attempting to follow your example, I'm failing to connect to
her gmail account. So, if you wouldn't m&lt;/pre&gt;</description>
    <dc:creator>JtWdyP</dc:creator>
    <dc:date>2013-05-17T04:38:08</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.mail.alpine.info/4943">
    <title>Re: can't figure out how to imap gmail with alpine2.00 (ala opensuse)</title>
    <link>http://permalink.gmane.org/gmane.mail.alpine.info/4943</link>
    <description>&lt;pre&gt;
[snipped]


 

Actually alpine can do both, a colleague I work with uses a headless
alpine (in screen) doing his gmail filtering as it's more powerful than
using gmail's.  That said I would be nervous of suggesting this as the
best way to do things, he has a desktop on UPS.  I use use the
reliatively limited gmail filters to acheive what I want and mostly use
alpine readonly (save for "read" status).
 

I'd recommend using an imap syncing tool like offlineimap.py

On my secure work desktop I use this to build a Maildir hierarchy which
I then use Eduardo's Maildir patch to read emails, as it's a bit faster
than imap directly.  Remotely I directly imap to gmail so it's in the
cloud and no data is stored on my own machines.


Be sure to configure the expunge option to not autoexpunge, also if the
email account is huge, it's best to hide "All Mail" as that can eat up
enough ram of your box as it caches and indexes 100s of thousands of
emails if you open it.
 
 

This looks okay, I have:

inbox-path={imap.gmail.&lt;/pre&gt;</description>
    <dc:creator>damion.yates-Re5JQEeQqe8AvxtiuMwx3w&lt; at &gt;public.gmane.org</dc:creator>
    <dc:date>2013-05-15T12:10:11</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.mail.alpine.info/4942">
    <title>Re: can't figure out how to imap gmail with alpine2.00 (ala opensuse)</title>
    <link>http://permalink.gmane.org/gmane.mail.alpine.info/4942</link>
    <description>&lt;pre&gt;
I'm no expert but i think i can see where you are going wrong. The beauty of 
alpine is that you can set it up to read the gmail server instead of using the 
gmail UI which is what i do (i then also use the gmail UI for certain things). 
As for saving emails offline that is then making things a little more 
complicated. From what i can see you are setting up to download headers like 
Thunderbird or others (using gmail-inbox etc). Disadvantage of that is that you 
then download all the headers on your next install of linux (9 months for you 
with Suse i think - i'm on xubuntu which is 6 months).

Setting up just to read the server is easy (i can send you my pinerc if you 
like) but it's easier to do it in Setup which then writes the pinerc for you. 
Your daughter could then save particular important emails as txt using Export 
which is what i do. I've found the Gmail server very good and haven't ever lost 
emails so don't see the point in saving offline.

Without checking (because i'm using Alpine as i'm typ&lt;/pre&gt;</description>
    <dc:creator>James Freer</dc:creator>
    <dc:date>2013-05-15T11:02:06</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.mail.alpine.info/4941">
    <title>can't figure out how to imap gmail with alpine 2.00(ala opensuse)</title>
    <link>http://permalink.gmane.org/gmane.mail.alpine.info/4941</link>
    <description>&lt;pre&gt;
I've used alpine exclusively as my mail client ever since I gave upon pine. And
pine ever since I gave up on mailx... Even so, I'm not really an expert using
it. It's more like I can't stand any other email client enough to learn to use
it... And that goes double for web mail interfaces.

So when my not so computer literate daughter wanted me to help her with her
gmail account, I said I could probably get the job done with alpine.

She wanted everything from a certain sender backed up offline, and dumped into
a separate folder that she wouldn't need to look at. She wanted her sent mail
archived offline. And almost everything else deleted... When I asked her if
she wanted future emails from that same former friend blocked, she asked if
they could go directly to the same folder without her having to look at them,
I said I could probably get that done too.

Of course I knew I'd have to use gmail's web interface to create the filter
and probably to create the folder to move Mr. wonderful's emails to.

That part&lt;/pre&gt;</description>
    <dc:creator>JtWdyP</dc:creator>
    <dc:date>2013-05-15T04:17:23</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.mail.alpine.info/4940">
    <title>Re: conditional cursor positioning</title>
    <link>http://permalink.gmane.org/gmane.mail.alpine.info/4940</link>
    <description>&lt;pre&gt;

Then maybe you should be adding _CURSORPOS_ at the beginning of your 
signature, besides putting your [X] signature at bottom.

&lt;/pre&gt;</description>
    <dc:creator>Eduardo Chappa</dc:creator>
    <dc:date>2013-05-11T21:39:12</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.mail.alpine.info/4939">
    <title>Re: conditional cursor positioning</title>
    <link>http://permalink.gmane.org/gmane.mail.alpine.info/4939</link>
    <description>&lt;pre&gt;

I do use 'Signature at Bottom' but without _CURSORPOS_ as the first line in my signature the cursor is positioned just under the '----- Message Text -----' line for reply and on the 'To      :' for compose

Richard

&lt;/pre&gt;</description>
    <dc:creator>kqt4at5v-Re5JQEeQqe8AvxtiuMwx3w&lt; at &gt;public.gmane.org</dc:creator>
    <dc:date>2013-05-11T10:06:34</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.mail.alpine.info/4938">
    <title>Re: conditional cursor positioning</title>
    <link>http://permalink.gmane.org/gmane.mail.alpine.info/4938</link>
    <description>&lt;pre&gt;

Have you tried not using _CURSORPOS_ and instead enabling

  [X]  Signature at Bottom

&lt;/pre&gt;</description>
    <dc:creator>Eduardo Chappa</dc:creator>
    <dc:date>2013-05-11T06:13:08</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.mail.alpine.info/4937">
    <title>conditional cursor positioning</title>
    <link>http://permalink.gmane.org/gmane.mail.alpine.info/4937</link>
    <description>&lt;pre&gt;I found in an older post that adding _CURSORPOS_ to my signature would get the cursor to jump to the bottom so as not to offend the anti-topposting people
Is there a way to get this to only jump to the bottom with reply and not with compose

Richard


&lt;/pre&gt;</description>
    <dc:creator>kqt4at5v-Re5JQEeQqe8AvxtiuMwx3w&lt; at &gt;public.gmane.org</dc:creator>
    <dc:date>2013-05-10T21:18:32</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.mail.alpine.info/4936">
    <title>Re: Composing - Cc required</title>
    <link>http://permalink.gmane.org/gmane.mail.alpine.info/4936</link>
    <description>&lt;pre&gt;

For example a filter configured to search for text containing:
"(from:me AND alpine-info&amp;lt; at &amp;gt;u.washington.edu) OR alpine-info&amp;lt; at &amp;gt;u.washington.edu"
... which labels the email with "alpine", will mean IMAP can see a
folder called alpine which will contain emails from that mailing list
which include your own sent emails which is what you wanted.

If you don't currently filter email to folders within gmail then as you
noted "All Mail" contains an inbox-a-like which contains all emails
including sent ones.

 - Damion

&lt;/pre&gt;</description>
    <dc:creator>damion.yates-Re5JQEeQqe8AvxtiuMwx3w&lt; at &gt;public.gmane.org</dc:creator>
    <dc:date>2013-05-01T08:25:46</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.mail.alpine.info/4935">
    <title>Re: Composing - Cc required</title>
    <link>http://permalink.gmane.org/gmane.mail.alpine.info/4935</link>
    <description>&lt;pre&gt;
Of course; yep that simple... i think i've only used bcc once or twice in the 
13/14 years i've been using email.

On the technical computing side i'm not that knowledgeable so i do appreciate 
your help [Dennis, Matt etal]. I will have to learn a bit more. To me Alpine is 
still by far the best email client and i think i've tried them all now.

#james
&lt;/pre&gt;</description>
    <dc:creator>James Freer</dc:creator>
    <dc:date>2013-04-30T19:34:53</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.mail.alpine.info/4934">
    <title>Re: Composing - Cc required</title>
    <link>http://permalink.gmane.org/gmane.mail.alpine.info/4934</link>
    <description>&lt;pre&gt;
(I've never really understood why people want to do this, but see many
people CCing themselves on mail..)

But can't you just set the default-fcc to be Inbox?
&lt;/pre&gt;</description>
    <dc:creator>Matt Ackeret</dc:creator>
    <dc:date>2013-04-30T18:36:26</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.mail.alpine.info/4933">
    <title>Re: Composing - Cc required</title>
    <link>http://permalink.gmane.org/gmane.mail.alpine.info/4933</link>
    <description>&lt;pre&gt;

In which case it's probably using the Message-ID: for the duplicate
suppression.  It won't be alone in this.  The Cyrus IMAP server
can be configured to run with duplicate suppression.  It uses the
Message-ID: header for this.
&lt;/pre&gt;</description>
    <dc:creator>Dennis Davis</dc:creator>
    <dc:date>2013-04-30T16:17:10</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.mail.alpine.info/4932">
    <title>Re: Composing - Cc required</title>
    <link>http://permalink.gmane.org/gmane.mail.alpine.info/4932</link>
    <description>&lt;pre&gt;

Gmail does duplicate suppression on all mail, so if the message is in Sent 
Mail it will not be duplicated in Inbox when it comes in. Yes of course the 
incoming copy will have additional Received headers and sometimes other 
changes made by the list software, but it is still considered a duplicate. 
Gmail is an odd mail server.

Joseph Brennan
Columbia University Information Technology


&lt;/pre&gt;</description>
    <dc:creator>Joseph Brennan</dc:creator>
    <dc:date>2013-04-30T15:39:37</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.mail.alpine.info/4931">
    <title>Re: Composing - Cc required</title>
    <link>http://permalink.gmane.org/gmane.mail.alpine.info/4931</link>
    <description>&lt;pre&gt;

This is an artifact of GMail's IMAP implementation.  You can create a
filter to a label like "inclusiveinbox" which matches on the listid of
the mailing list in question and includes from:me ORed into the mix.

Also make sure you've configured the delete/expunge settings to be
compatible with pine (alpine) rather than iphone (a significantly larger
proportion of imap traffic).  I.e. not to auto expunge on delete.

 - Damion

&lt;/pre&gt;</description>
    <dc:creator>damion.yates-Re5JQEeQqe8AvxtiuMwx3w&lt; at &gt;public.gmane.org</dc:creator>
    <dc:date>2013-04-30T15:28:22</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.mail.alpine.info">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.mail.alpine.info</link>
  </textinput>
</rdf:RDF>
