1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
22 // enum ------------------------------------------------------------------
26 MAIL_STATE_SUCCESS
= 0,
28 MAIL_STATE_ATTACHED_NOT_FOUND
,
30 MAIL_STATE_LOGIN_FAILURE
,
31 MAIL_STATE_RECEIVER_NOT_FOUND
,
32 MAIL_STATE_TOO_MANY_FILES
,
33 MAIL_STATE_TOO_MANY_RECEIVERS
,
34 MAIL_STATE_NO_RECEIVERS
,
35 MAIL_STATE_USER_CANCEL
,
36 MAIL_STATE_DRIVER_NOT_AVAILABLE
41 MAIL_DRIVER_DETECT
= 0,
43 MAIL_DRIVER_VIM
= MAIL_DRIVER_BEGIN
,
54 MAIL_PRIORITY_LOW
= 0,
64 MAIL_RECEIVER_NEWSGROUP
69 MAIL_ACTION_DYING
, // Server stirbt
70 MAIL_ACTION_SEND
, // Mail wurde versendet
71 MAIL_ACTION_READ
, // Mail wurde als gelesen gekennzeichnet
72 MAIL_ACTION_REMOVED
, // Mail wurde gel"oscht
73 MAIL_ACTION_UPDATED
, // alle Mails wurden neu eingelesen
74 MAIL_ACTION_NEXT
, // Sprung zur n"achsten Mail
75 MAIL_ACTION_PREV
// Sprung zur vorherigen Mail
78 // Textformat zum Versenden von Nachrichten ------------------------------
80 #define TXTFORMAT_ASCII ((sal_uInt8)0x01)
81 #define TXTFORMAT_HTML ((sal_uInt8)0x02)
82 #define TXTFORMAT_RTF ((sal_uInt8)0x04)
83 #define TXTFORMAT_OFFICE ((sal_uInt8)0x08)
88 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */