diff options
Diffstat (limited to 'plugins/exchange-operations/exchange-send-options.h')
-rw-r--r-- | plugins/exchange-operations/exchange-send-options.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/plugins/exchange-operations/exchange-send-options.h b/plugins/exchange-operations/exchange-send-options.h index 8d4e2de55f..f09e189670 100644 --- a/plugins/exchange-operations/exchange-send-options.h +++ b/plugins/exchange-operations/exchange-send-options.h @@ -48,11 +48,18 @@ typedef enum { E_SENSITIVITY_CONFIDENTIAL } ExchangeSendOptionsSensitivity; +/* We require the delegate_email and delegate_name to store the address of the delegator selected into + the destination store. +*/ typedef struct { ExchangeSendOptionsImp importance; ExchangeSendOptionsSensitivity sensitivity; + gboolean send_as_del_enabled; gboolean delivery_enabled; gboolean read_enabled; + const char *delegate_name; + const char *delegate_email; + const char *delegate_address; } ExchangeSendOptions ; struct _ExchangeSendOptionsDialog { |