From: Gaute Hope <eg@gaute.vetsj.com>
To: sup-talk <sup-talk@rubyforge.org>
Subject: Re: [sup-talk] offlineimap before-poll.rb undefined method 'usual_sources'
Date: Sat, 14 Nov 2009 01:12:04 +0100 [thread overview]
Message-ID: <1258157447-sup-5782@dolk> (raw)
In-Reply-To: <877htul8us.fsf@pond.riseup.net>
[-- Attachment #1: Type: text/plain, Size: 1571 bytes --]
Excerpts from Micah Anderson's message of fr. nov. 13 16:53:15 +0100 2009:
>
> The before-poll.rb wiki example[0] seems to be what I am interested in,
> however it doesn't work and provides a traceback. It reads as follows:
>
> def offlineimap(*folders)
> cmd = "offlineimap -q -u Noninteractive.Basic"
> cmd << " -f #{folders * ','}" unless folders.compact.empty?
> `#{cmd}`
> end
>
> def folder_names(sources)
> sources.map { |s| s.uri.split('/').last }
> end
>
> def inbox_sources(sources = Index.usual_sources)
> sources.find_all { |s| !s.archived? }.sort_by {|s| s.id }
> end
>
> if (@last_fetch || Time.at(0)) < Time.now - 120
> say "Running offlineimap..."
> # only check non-auto-archived sources on the first run
> log offlineimap(@last_fetch ? nil : folder_names(inbox_sources))
> say "Finished offlineimap run."
> end
> @last_fetch = Time.now
Im using this modified version; and I filter the folders in
offlineimaprc.
def offlineimap(*folders)
cmd = "offlineimap -u Noninteractive.Basic 2>&1"
#cmd << " -f #{folders * ','}" unless folders.compact.empty?
`#{cmd}`
end
def folder_names(sources)
sources.map { |s| s.uri.split('/').last }
end
def inbox_sources(sources = SourceManager.sources)
sources.find_all { |s| !s.archived? }.sort_by {|s| s.id }
end
if (@last_fetch || Time.at(0)) < Time.now - 20
say "Running offlineimap..."
# only check non-auto-archived sources on the first run
log offlineimap(@last_fetch ? nil : folder_names(inbox_sources))
say "Finished offlineimap."
end
@last_fetch = Time.now
- gaute
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 198 bytes --]
prev parent reply other threads:[~2009-11-14 0:12 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-11-13 15:53 Micah Anderson
2009-11-14 0:12 ` Gaute Hope [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1258157447-sup-5782@dolk \
--to=eg@gaute.vetsj.com \
--cc=sup-talk@rubyforge.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox