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/tdeioslave/imap4
Slávek Banko e77087ce3d
The workaround that tdepimmacros.h do is no longer needed
3 years ago
..
CMakeL10n.txt Add CMakeL10n rules. 5 years ago
CMakeLists.txt Renaming of files in preparation for code style tools. 3 years ago
Makefile.am Renaming of files in preparation for code style tools. 3 years ago
PATCHING Reorganize tdeioslave help handbooks, fix related protocol files and issues, update and add handbooks. 10 years ago
README Reorganize tdeioslave help handbooks, fix related protocol files and issues, update and add handbooks. 10 years ago
configure.in.in Reorganize tdeioslave help handbooks, fix related protocol files and issues, update and add handbooks. 10 years ago
imap4.cpp The workaround that tdepimmacros.h do is no longer needed 3 years ago
imap4.h fixup the Copyrights 5 years ago
imap4.protocol Fixed wrong DocPath strings. This relates to bug 2319. 9 years ago
imapcommand.cpp Renaming of files in preparation for code style tools. 3 years ago
imapcommand.h fixup the Copyrights 5 years ago
imapinfo.cpp Renaming of files in preparation for code style tools. 3 years ago
imapinfo.h fixup the Copyrights 5 years ago
imaplist.cpp Renaming of files in preparation for code style tools. 3 years ago
imaplist.h fixup the Copyrights 5 years ago
imapparser.cpp Renaming of files in preparation for code style tools. 3 years ago
imapparser.h Reorganize tdeioslave help handbooks, fix related protocol files and issues, update and add handbooks. 10 years ago
imaps.protocol Fixed wrong DocPath strings. This relates to bug 2319. 9 years ago
mailaddress.cpp Renaming of files in preparation for code style tools. 3 years ago
mailaddress.h Make getStr const correct. 5 years ago
mailheader.cpp Renaming of files in preparation for code style tools. 3 years ago
mailheader.h Reorganize tdeioslave help handbooks, fix related protocol files and issues, update and add handbooks. 10 years ago
mimehdrline.cpp Renaming of files in preparation for code style tools. 3 years ago
mimehdrline.h Reorganize tdeioslave help handbooks, fix related protocol files and issues, update and add handbooks. 10 years ago
mimeheader.cpp Renaming of files in preparation for code style tools. 3 years ago
mimeheader.h Reorganize tdeioslave help handbooks, fix related protocol files and issues, update and add handbooks. 10 years ago
mimeio.cpp Renaming of files in preparation for code style tools. 3 years ago
mimeio.h Reorganize tdeioslave help handbooks, fix related protocol files and issues, update and add handbooks. 10 years ago
rfcdecoder.cpp Renaming of files in preparation for code style tools. 3 years ago
rfcdecoder.h Reorganize tdeioslave help handbooks, fix related protocol files and issues, update and add handbooks. 10 years ago
selectinfo.h fixup the Copyrights 5 years ago

README

This is s.carstens@gmx.de release of KDE 2.0 tdeioslave
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