Evolution

Aus wiki.archlinux.de
Version vom 30. April 2016, 10:43 Uhr von Truemmerer (Diskussion | Beiträge) (SEITE ANGELEGT)
(Unterschied) ← Nächstältere Version | Aktuelle Version (Unterschied) | Nächstjüngere Version → (Unterschied)

Dieser Artikel oder Artikelabschnitt ist noch nicht vollständig!


„Evolution“ wurde von Truemmerer (Diskussion) als in Bearbeitung markiert. Um Bearbeitungskonflikte zu vermeiden, kontaktiere Truemmerer (Diskussion) bitte, bevor du den Artikel bearbeitest.


Dieser Artikel oder Artikelabschnitt bedarf einer stilistischen Überarbeitung laut Empfehlungen in Artikelstil.


Evolution ist ein E-Mail Client aus dem hause GNOME welcher außer E-Mails auch Kontakte, Aufgaben, Kalender und Notizen unterstützt. Es unterstützt den Support von IMAP, Microsoft Exchange Server 2007 und 2010, Novell GroupWise, Kolab, LDAP, WebDAV, CalDAV und eine menge weiterer Protokolle.

Installation

Evolution ist als evolution in extra verfügbar, und kann von dort mittels Pacman installiert werden.

# Evolution an sich
pacman -S evolution

# Für Server
pacman -S evolution-ews evolution-data-server

IMAP Setup

Wer GNOME benutzt kann über dessen Einstellungen » Online Konten » + Konten hinzufügen. Ansonsten unter Evolution Datei » E-Mail-Konto

Alternativer IMAP Setup

Wer immer alle E-Mails direkt auf dem PC haben möchte, also eine komplette Synchronisation zwischen dem IMAP Server und dem Computer, der braucht 1. viel mehr Festplatten Platz und 2. muss man folgendes installieren.

pacman -S offlineimap

Offlineimap Setup

Offlineimap bezieht seine einstellungen von offlineimaprc welches man selbst erstellen muss. Für mehr infos sollte man sich die Offizielle README durchlesen.

[general]
accounts = MyAccount
# Set this to the number of accounts you have.
maxsyncaccounts = 1
# You can set ui = TTY.TTYUI for interactive password entry if needed.
# Setting it within this file (see below) is easier.
ui = Noninteractive.Basic

[Account MyAccount]
# Each account should have a local and remote repository
localrepository = MyLocal
remoterepository = MyGmail
# Specifies how often to do a repeated sync (if running without crond)
autorefresh = 10

[Repository MyLocal]
type = Maildir
localfolders = /home/path/to/your/maildir
# This needs to be specified so the MailDir uses a folder structure
# suitable to Evolution
sep = /

[Repository MyGmail]
# Example for a gmail account
type = Gmail
# If using some other IMAP server, uncomment and set the following:-
#remotehost = imap.gmail.com
#ssl = yes
#remoteport = 993
# Specify the Gmail user name and password.
remoteuser = yourname@gmail.com
remotepass = yourpassword
# realdelete is Gmail specific, setting to no ensures that deleting
# a message sends it to 'All Mail' instead of the trash.
realdelete = no
# Use 1 here first, increase it if your connection (and the server's)
# supports it.
maxconnections = 1
# This translates folder names such that everything (including your Inbox)
# appears in the same folder (named root).
nametrans = lambda foldername: re.sub('^Sent$', 'root/Sent',
 re.sub('^(\[G.*ail\]|INBOX)', 'root', foldername))
# This excludes some folders from being synced. You will almost
# certainly want to exclude 'All Mail', 'Trash', and 'Starred', at
# least. Note that offlineimap does NOT honor subscription details.
folderfilter = lambda foldername: foldername not in ['[Gmail]/All Mail',
 '[Gmail]/Trash','[Gmail]/Spam','[Gmail]/Starred']