You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdepim/kioslaves/imap4
Slávek Banko 84caa32d49
Official Trinity Desktop Environment v3.5.13.2 release
11 years ago
..
CMakeLists.txt [kdepim]: initial cmake support for following subpackages: akregator, certmanager, kaddressbook, kalarm, kioslaves, kmail, ktnef, libemailfunctions, libkcal, libkdenetwork, libkdepim, libkmime, libkpgp, libkpimidentities, libksieve, mimelib 13 years ago
Makefile.am Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
PATCHING Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
README Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
configure.in.in Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
imap4.cc Official Trinity Desktop Environment v3.5.13.2 release 11 years ago
imap4.h Initial conversion of kdepim to TQt 13 years ago
imap4.protocol Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
imapcommand.cc Fix inadvertent TQt changes 12 years ago
imapcommand.h Fix inadvertent TQt changes 12 years ago
imapinfo.cc rename the following methods: 13 years ago
imapinfo.h Trinity Qt initial conversion 14 years ago
imaplist.cc Remove additional unneeded tq method conversions 12 years ago
imaplist.h Trinity Qt initial conversion 14 years ago
imapparser.cc Fix more SEGV in imapparser 12 years ago
imapparser.h Fix another endless loop in imapparser 12 years ago
imaps.protocol Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
mailaddress.cc rename the following methods: 13 years ago
mailaddress.h Trinity Qt initial conversion 14 years ago
mailheader.cc rename the following methods: 13 years ago
mailheader.h Rename obsolete tq methods to standard names 12 years ago
mimehdrline.cc rename the following methods: 13 years ago
mimehdrline.h Initial conversion of kdepim to TQt 13 years ago
mimeheader.cc Rename old tq methods that no longer need a unique name 12 years ago
mimeheader.h rename the following methods: 13 years ago
mimeio.cc rename the following methods: 13 years ago
mimeio.h Initial conversion of kdepim to TQt 13 years ago
rfcdecoder.cc Fix linear alphabet string errors 12 years ago
rfcdecoder.h rename the following methods: 13 years ago
selectinfo.h Trinity Qt initial conversion 14 years ago

README

This is s.carstens@gmx.de release of KDE 2.0 kioslave
for the IMAP protocol.

It supports LOGIN, AUTHENTICATE LOGIN, AUTHENTICATE ANONYMOUS and
AUTHENTICATE CRAM-MD5.
It supports the rfc2192 URL naming convention.

- UIDVALIDITY check is conditional
- put will check if the mailbox exists and create it
  or will append the data to that mailbox
  (no append after create)
  use edit->new->textfile from konqueror
- move will try to guess the correct destination
  as konqueror appends the source mailbox name to
  the destination
- del will currently delete empty directories,
  mark messages for deletion.
  If deleting a directory konqueror does the following:
  - list the box
  - take the box url + file name and try to delete it
  - delete the box
  As the konqueror created urls are invalid we ignore them
  at the moment.
- relative URL's are not supported because
  konqueror will not handle them
- there are 2 additional section keywords
  ENVELOPE will do a FETCH ENVELOPE
  STRUCTURE will do a FETCH BODYSTRUCTURE
  normal behaviour is FETCH BODY.PEEK[section]
  
- the mime types delivered are not really consistent
  with the returned data
  - it will return inode/directory on list entries
    which contain inferiors
  - it will return message/digest on selectable mailboxes
    with file type S_IFDIR
  - type message/rfc822-imap on selected messages
	and type S_IFREG
	
In Konqueror set the mimetype message/rfc822 to use
the inline viewer.

Try it:  imap://user@host/
         imap://user;AUTH=*@host/
		 imap://user;AUTH=LOGIN@host/
		 imap://user;AUTH=CRAM-MD5@host/
		
comments to s.carstens@gmx.de