author | alwin <alwin> | 2004-07-19 13:25:12 (UTC) |
---|---|---|
committer | alwin <alwin> | 2004-07-19 13:25:12 (UTC) |
commit | 1397c4f0801d4bf1581c26e466453ba65f1b4261 (patch) (unidiff) | |
tree | dd57fbf32ca9371d77ae0a90aa564f8b07779a3f | |
parent | f35e69d020bdce078e2fc11f3a5298118a33f346 (diff) | |
download | opie-1397c4f0801d4bf1581c26e466453ba65f1b4261.zip opie-1397c4f0801d4bf1581c26e466453ba65f1b4261.tar.gz opie-1397c4f0801d4bf1581c26e466453ba65f1b4261.tar.bz2 |
block SIGPIPE global 'cause we can not satisfy it inside libetpan
itself.
-rw-r--r-- | noncore/net/mail/opiemail.cpp | 30 | ||||
-rw-r--r-- | noncore/net/mail/opiemail.h | 3 |
2 files changed, 25 insertions, 8 deletions
diff --git a/noncore/net/mail/opiemail.cpp b/noncore/net/mail/opiemail.cpp index 5399c3c..2f87e44 100644 --- a/noncore/net/mail/opiemail.cpp +++ b/noncore/net/mail/opiemail.cpp | |||
@@ -18,11 +18,15 @@ | |||
18 | 18 | ||
19 | /* QT */ | 19 | /* QT */ |
20 | 20 | ||
21 | /* UNIX */ | ||
22 | #include <signal.h> | ||
23 | |||
21 | using namespace Opie::Core; | 24 | using namespace Opie::Core; |
22 | 25 | ||
23 | OpieMail::OpieMail( QWidget *parent, const char *name, WFlags flags ) | 26 | OpieMail::OpieMail( QWidget *parent, const char *name, WFlags flags ) |
24 | : MainWindow( parent, name, WStyle_ContextHelp ) | 27 | : MainWindow( parent, name, WStyle_ContextHelp ) |
25 | { | 28 | { |
29 | setup_signalblocking(); | ||
26 | settings = new Settings(); | 30 | settings = new Settings(); |
27 | 31 | ||
28 | folderView->populate( settings->getAccounts() ); | 32 | folderView->populate( settings->getAccounts() ); |
@@ -33,6 +37,16 @@ OpieMail::~OpieMail() | |||
33 | if (settings) delete settings; | 37 | if (settings) delete settings; |
34 | } | 38 | } |
35 | 39 | ||
40 | void OpieMail::setup_signalblocking() | ||
41 | { | ||
42 | /* for networking we must block SIGPIPE and Co. */ | ||
43 | struct sigaction blocking_action,temp_action; | ||
44 | blocking_action.sa_handler = SIG_IGN; | ||
45 | sigemptyset(&(blocking_action.sa_mask)); | ||
46 | blocking_action.sa_flags = 0; | ||
47 | sigaction(SIGPIPE,&blocking_action,&temp_action); | ||
48 | } | ||
49 | |||
36 | void OpieMail::appMessage(const QCString &msg, const QByteArray &data) | 50 | void OpieMail::appMessage(const QCString &msg, const QByteArray &data) |
37 | { | 51 | { |
38 | // copied from old mail2 | 52 | // copied from old mail2 |
@@ -70,13 +84,13 @@ void OpieMail::slotwriteMail(const QString&name,const QString&email) | |||
70 | 84 | ||
71 | void OpieMail::slotComposeMail() | 85 | void OpieMail::slotComposeMail() |
72 | { | 86 | { |
73 | odebug << "Compose Mail" << oendl; | 87 | odebug << "Compose Mail" << oendl; |
74 | slotwriteMail(0l,0l); | 88 | slotwriteMail(0l,0l); |
75 | } | 89 | } |
76 | 90 | ||
77 | void OpieMail::slotSendQueued() | 91 | void OpieMail::slotSendQueued() |
78 | { | 92 | { |
79 | odebug << "Send Queued" << oendl; | 93 | odebug << "Send Queued" << oendl; |
80 | SMTPaccount *smtp = 0; | 94 | SMTPaccount *smtp = 0; |
81 | 95 | ||
82 | QList<Account> list = settings->getAccounts(); | 96 | QList<Account> list = settings->getAccounts(); |
@@ -123,7 +137,7 @@ void OpieMail::slotSendQueued() | |||
123 | 137 | ||
124 | void OpieMail::slotSearchMails() | 138 | void OpieMail::slotSearchMails() |
125 | { | 139 | { |
126 | odebug << "Search Mails" << oendl; | 140 | odebug << "Search Mails" << oendl; |
127 | } | 141 | } |
128 | 142 | ||
129 | void OpieMail::slotEditSettings() | 143 | void OpieMail::slotEditSettings() |
@@ -134,7 +148,7 @@ void OpieMail::slotEditSettings() | |||
134 | 148 | ||
135 | void OpieMail::slotEditAccounts() | 149 | void OpieMail::slotEditAccounts() |
136 | { | 150 | { |
137 | odebug << "Edit Accounts" << oendl; | 151 | odebug << "Edit Accounts" << oendl; |
138 | EditAccounts eaDialog( settings, this, 0, true, WStyle_ContextHelp ); | 152 | EditAccounts eaDialog( settings, this, 0, true, WStyle_ContextHelp ); |
139 | eaDialog.slotAdjustColumns(); | 153 | eaDialog.slotAdjustColumns(); |
140 | QPEApplication::execDialog( &eaDialog ); | 154 | QPEApplication::execDialog( &eaDialog ); |
@@ -183,7 +197,7 @@ void OpieMail::mailHold(int button, QListViewItem *item,const QPoint&,int ) | |||
183 | MAILLIB::ATYPE mailtype = ((MailListViewItem*)mailView->currentItem() )->wrapperType(); | 197 | MAILLIB::ATYPE mailtype = ((MailListViewItem*)mailView->currentItem() )->wrapperType(); |
184 | /* just the RIGHT button - or hold on pda */ | 198 | /* just the RIGHT button - or hold on pda */ |
185 | if (button!=2) {return;} | 199 | if (button!=2) {return;} |
186 | odebug << "Event right/hold" << oendl; | 200 | odebug << "Event right/hold" << oendl; |
187 | if (!item) return; | 201 | if (!item) return; |
188 | QPopupMenu *m = new QPopupMenu(0); | 202 | QPopupMenu *m = new QPopupMenu(0); |
189 | if (m) | 203 | if (m) |
@@ -207,15 +221,15 @@ void OpieMail::mailHold(int button, QListViewItem *item,const QPoint&,int ) | |||
207 | 221 | ||
208 | void OpieMail::slotShowFolders( bool show ) | 222 | void OpieMail::slotShowFolders( bool show ) |
209 | { | 223 | { |
210 | odebug << "Show Folders" << oendl; | 224 | odebug << "Show Folders" << oendl; |
211 | if ( show && folderView->isHidden() ) | 225 | if ( show && folderView->isHidden() ) |
212 | { | 226 | { |
213 | odebug << "-> showing" << oendl; | 227 | odebug << "-> showing" << oendl; |
214 | folderView->show(); | 228 | folderView->show(); |
215 | } | 229 | } |
216 | else if ( !show && !folderView->isHidden() ) | 230 | else if ( !show && !folderView->isHidden() ) |
217 | { | 231 | { |
218 | odebug << "-> hiding" << oendl; | 232 | odebug << "-> hiding" << oendl; |
219 | folderView->hide(); | 233 | folderView->hide(); |
220 | } | 234 | } |
221 | } | 235 | } |
diff --git a/noncore/net/mail/opiemail.h b/noncore/net/mail/opiemail.h index b93bd60..3d25b3d 100644 --- a/noncore/net/mail/opiemail.h +++ b/noncore/net/mail/opiemail.h | |||
@@ -34,6 +34,9 @@ protected slots: | |||
34 | virtual void slotMoveCopyMail(); | 34 | virtual void slotMoveCopyMail(); |
35 | virtual void reEditMail(); | 35 | virtual void reEditMail(); |
36 | 36 | ||
37 | protected: | ||
38 | void setup_signalblocking(); | ||
39 | |||
37 | private: | 40 | private: |
38 | Settings *settings; | 41 | Settings *settings; |
39 | 42 | ||