--- /dev/null
+# Makefile.am - main makefile for dialogs part of OutlGPG
+# Copyright (C) 2005 g10 Code GmbH
+#
+# This file is free software; as a special exception the author gives
+# unlimited permission to copy and/or distribute it, with or without
+# modifications, as long as this notice is preserved.
+#
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
+# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+
+## Process this file with automake to produce Makefile.in
+
+bin_PROGRAMS = libgpgmedlgs
+
+libgpgmedlgs_SOURCES = \
+ MapiGPGME.cpp \
+ MapiGPGME.h \
+ gpgmedlgs.rc \
+ libgpgmedlgs.def \
+ common.c \
+ config-dialog.c \
+ engine-gpgme.c \
+ engine.h \
+ intern.h \
+ keycache.c \
+ keycache.h \
+ keylist.c \
+ logging.c \
+ main.c \
+ passphrase-dialog.c \
+ recipient-dialog.c \
+ resource.h \
+ verify-dialog.c
+
+
+
+
+++ /dev/null
-Noteworthy changes for version 0.6.1 (unreleased)\r
-=================================================\r
-\r
-* Fix the problem that the user can just reply with\r
- the encrypted text.\r
-\r
-* Fixes for a lot of minor problems with NT5 based\r
- systems and for Outlook version 2003.\r
-\r
-* Support for handling HTML mails.\r
- This includes the encryption of the contents and\r
- the proper decryption without losing the special\r
- (html) text attributes like colors.\r
-\r
-* Support for '%ENV%' strings for the log file.\r
-\r
-\r
-Noteworthy changes for version 0.5.5 (2005-07-12)\r
-=================================================\r
-\r
-* Support to sign all outgoing attachments.\r
-\r
-* Support for logging.\r
-\r
-* Fixed some memory leaks.\r
-\r
-\r
-Noteworthy changes for version 0.5.4 (2005-07-03)\r
-=================================================\r
-\r
-* Support for securing attachments.\r
- This means the all attachments will be encrypted\r
- if encryption has been selected for the message.\r
-\r
-* A new option to allow to save decrypted attachments\r
- to the disk.\r
-\r
-* Several bug fixes all over the place.\r
-\r
-\r
-Noteworthy changes for version 0.5.3 (2005-06-16)\r
-=================================================\r
-\r
-* Allow to set a default key which is used automatically\r
- for encryption.\r
-\r
-* Handle old V3 keys in the signature verification dialog.\r
-\r
-* Issue and error if the encrypt process returned invalid\r
- recipients.\r
-\r
-\r
-Noteworthy changes for version 0.5.2 (2005-06-05)\r
-=================================================\r
-\r
-* Differ between possible decryption failures.\r
- - General errors.\r
- - No secret key available.\r
-\r
-* Add a 'encrypt-to' listbox to the decryption dialog\r
- to know the recipients the message was encrypted for.\r
-\r
-* Add some checks to report problems with permissions\r
- related to the Registry.\r
-\r
-* Fixed a format string problem which was possible for\r
- crashes when the signature has been expired.\r
-\r
-Noteworthy changes for version 0.5.1 (2005-05-29)\r
-=================================================\r
-\r
-* Issue a warning if the user cancels the sign or\r
- encryption procedure.\r
-\r
-* Support to read and write X- headers for messages.\r
-\r
-* Fixed a problem which crashes Outlook if the keyManager\r
- exe did not exist but was set in the registry.\r
-\r
-\r
-Noteworthy changes for version 0.4.0 (2005-05-10)\r
-=================================================\r
-\r
-* Verify dialog is automatically shown whenever needed. Plus it\r
- contains a hint-label whenever the signature is special. For\r
- example the signature has expire or it was issued by a key which\r
- is not trustworthy.\r
-\r
-* Offer a GPG configuration dialog to set the path to GPG, the home\r
- directory and an optional field to specify a key manager.\r
-\r
-* Common dialogs for the following procedures:\r
- - verify a clearsign signature\r
- - decrypt a message (and verify a signature)\r
- - encrypt a message (and sign the plaintext)\r
- - clearsign a message\r
-\r
-* Provide a class to encapsulate MAPI messages and high-level functions\r
- for all crypto operations.\r
- \r
+++ /dev/null
-* Show more details in case of some errors.\r
- For example 'No Secret Key' should contain the key-ID\r
- and if possible the primary user-ID.\r
-\r
-* much better HTML support.\r
-\r
-* factor out more common code in encrypt, signEncrypt.\r
-\r
-* grep all XXX in the code and provide fixes.\r
-\r
-* provide a general passphrase caching system to allow to store\r
- more than one passphrase. This can be done with a hash table and\r
- the key-ID is used as the index to access the passphrase.\r
-\r
-* handle unicode messages and find out why UTF-8 messages cannot be\r
- manipulated.\r
-\r
-* find out why sometimes the new body cannot set to a MAPI object. In\r
- this case the body is empty but the W32 API said it was correctly set.\r
-\r
-* implement a static shared section inside the DLL to provide the key cache\r
- objects. right now we load all keys on demand.\r
-\r