summaryrefslogtreecommitdiff
path: root/noncore/unsupported
AgeCommit message (Collapse)AuthorFilesLines
2003-05-07Smaller fix which shows attachment icons also for downloaded mailsgroucho1-1/+5
2003-05-07Small fix which show attachment icons for downloaded mails alsogroucho1-12/+1
2003-04-29- added ReplyAll for CC: addressinggroucho9-74/+206
- added a download button in mail view - smaller layout fixes - now it's getting to be real useful
2003-04-28- bug fixes in the parser (from header)groucho7-125/+104
- bug fixes in address selector (uses cc: now) - remove now selects next item afterwards (speeds up mass deletion) - smaller fixes
2003-04-24- reworked size filteringgroucho15-256/+244
- started reworking offline download - better tab focus switching - Hello "Whats this" capability - Fixed parsing of To: header files (no more Delivered-To: and Reply-To: matches) - Good bye Settings.txt, hello Config Objects and encrypted passwords - Translation improvements (added trs) - Parser optimizations
2003-04-22Add Package: field to control files. This will facilitate ditching mkipks ↵kergoth7-0/+7
in favor of something with some sanity.
2003-04-22Dependency fixes. s/opie-base/task-opie-minimal/; ↵kergoth6-6/+6
s/libqt2-emb-fonts/qte-fonts/; s/libqt2-emb/libqte2/;
2003-04-20Make it work with opie-lupdatezecke1-0/+1
2003-04-20adding dutch to the .pro-filescniehaus8-0/+8
2003-04-20- Added CC: supportgroucho9-43/+361
- Added mail forwarding - Added icon for selective mail download - Removing mails from mail list via icon - Temporarily disabled mail header download queue
2003-04-15- SMTP fix preventing authorization with SMTP after POPgroucho7-25/+21
- removed debug output - smaller bug fixes
2003-04-14Adjusting for translationgroucho1-0/+1
2003-04-14- Buttonlayout changed in attach dialoggroucho12-43/+78
- Removed file access for address list (reduces size) - Added header size sping box for accounts - mailit shows an icon in the message list if attachments are present - Added translations in pro file - Removed resource.* references in header files, uses qpe/resource.h instead
2003-04-13- Uses mime types for attachment readinggroucho7-33/+55
- Addresses are read from ocontactacess
2003-04-11Lots of improvements regarding usability and stability:groucho5-66/+100
- Now uses ofileselector for sending attachments (reading follows, does not crash any more) - Uses DocLnks for attachments (when composing a message) - Beautified the attachments dialog with doc icons - removed a crash when sending attachments and no account was set - smaller fixes ToDo: - Attachment viewer should use doclnk too - get rid of teh save button in ofileselector - fix the bug with GMX mail provider sending mail (user encoding wrong) - replace the Attach and Remove buttons with a nice toolbar - Maybe integrate attview into the mail sending window on demand - get rid of crashes
2003-04-10some debug outputllornkcor1-1/+9
2003-04-07Better look, crystal icons and path correctionsgroucho4-10/+10
2003-04-06remove old dependsllornkcor1-1/+0
2003-04-06change pics/mailitllornkcor1-1/+1
2003-04-06grumblellornkcor1-2/+2
2003-04-06blah gcc3llornkcor1-37/+37
2003-04-06change icons to pics dirllornkcor3-43/+2
2003-04-06fixllornkcor1-3/+2
2003-04-06add thisllornkcor1-0/+4
2003-04-06add some tr to status messagesllornkcor2-15/+15
2003-04-06Qt Palmtop -> Opiellornkcor1-1/+1
2003-04-06iconllornkcor1-1/+1
2003-04-06warwick does not maintain this any longerllornkcor1-1/+1
2003-04-06move malit to head again, since it is workingllornkcor38-0/+5694
2003-02-13Added Euroconv for Eric Santonaccigroucho3-13/+12
Changed the opiemail config.in files to the correct dependencies. How did this slip in again ?
2003-01-26Remove depends on a specific version.. it should be depending on >= or <= ↵kergoth4-4/+4
depending on what API the app in question is depending on.. given we're still in a development stage, this is unnecessary. Going forward better explicit depends will be necessary on every API change which introduces a new dependency.
2003-01-24Sorry about the flood on the cvs ml list, but this uses OPIEDIR to locate ↵kergoth7-7/+7
include.pro rather than a relative path.. then you dont have to alter the .pro when restructuring cvs.
2003-01-23fix .pro files for new buildsystemmickeyl3-6/+7
ensure libmail and bend gets build before the mail app
2003-01-23QTDIR/lib -> OPIEDIR/libkergoth2-2/+2
2003-01-23- added weatherplugin, opiemail and odict to the build processgroucho2-6/+6
- adjusted batteryapplet/config.in as it was not reflected when building - embeddedconsole now builds with the right options - opie-console dto.
2003-01-23package naming change.. alter library packages to use debian naming ↵kergoth2-2/+2
convention. also moved bits that didnt belong in lib pakcages elsewhere.
2003-01-16Add some config.in.in files to remove the 'duplicate' categories spotted by ↵kergoth1-0/+1
Max..
2003-01-16i18n for new buildsystem :)kergoth7-0/+28
2003-01-16Move most of config categorization into root config, and consolated core vs ↵kergoth1-4/+4
noncore from a config perspective, as its confusing and unnecessary for users. Also cleaned up a bit, and added some basic descriptions.
2003-01-02I hope this works better on the pda. The previous solution just worked oneilers1-3/+7
my desktop pc ..
2002-12-16Addressbook is now able to send mails through opie-mail..eilers2-3/+47
2002-12-14addLanguage rulescniehaus7-0/+14
2002-12-11 QBusyBar::~QBusyBar ( )simon1-0/+1
{ + delete [] m_fadecols;
2002-12-10Add -lstdc++ to LIBS explicitly for apps that require it, as we no longer ↵kergoth1-1/+1
link with g++.
2002-11-24valgrind found bugstille4-14/+27
thanks to simon
2002-11-14namespace and include fix for uses of iostream in STLkergoth1-5/+7
2002-11-11bug fixtille1-2/+2
2002-11-10here it's...tille16-253/+370
2002-11-08- a couple of fixes like this one:simon3-4/+4
- fprintf(f, "%g", real); + fprintf(f, "%g", static_cast<double>(real)); with 'real' being a fouble object. as fprintf is a c function with variable arguments one cannot pass non-primitive objects through it and there is no way for the compiler to figure out the right conversion operator, so we give it a helping hand :)
2002-11-07Correct namingkergoth1-1/+1