Changeset 4667:ad6a4b66f862
- Timestamp:
- 2006-06-08 04:56:05 (3 years ago)
- Author:
- Thomas Roessler <roessler@…>
- Branch:
- HEAD
- Message:
-
Clean up ReleaseDate? mess; include ReleaseDate? in User-Agent
header.
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r4343
|
r4667
|
|
| 54 | 54 | #include <utime.h> |
| 55 | 55 | |
| 56 | | extern char *ReleaseDate; |
| 57 | 56 | |
| 58 | 57 | /* The folder the user last saved to. Used by ci_save_message() */ |
-
|
r4610
|
r4667
|
|
| 115 | 115 | #define UNREAD(h) mutt_thread_contains_unread (Context, h) |
| 116 | 116 | |
| 117 | | extern const char *ReleaseDate; |
| 118 | 117 | extern size_t UngetCount; |
| 119 | 118 | |
-
|
r4622
|
r4667
|
|
| 140 | 140 | WHERE char *LastFolder; |
| 141 | 141 | |
| | 142 | |
| | 143 | WHERE const char *ReleaseDate; |
| | 144 | |
| 142 | 145 | WHERE HASH *Groups; |
| 143 | 146 | |
| … |
… |
|
| 161 | 164 | WHERE SPAM_LIST *SpamList INITVAL(0); |
| 162 | 165 | WHERE RX_LIST *NoSpamList INITVAL(0); |
| | 166 | |
| 163 | 167 | |
| 164 | 168 | /* bit vector for boolean variables */ |
| … |
… |
|
| 272 | 276 | #include "sort.h" |
| 273 | 277 | #include "mutt_crypt.h" |
| | 278 | #include "reldate.h" |
| 274 | 279 | #endif /* MAIN_C */ |
-
|
r4640
|
r4667
|
|
| 28 | 28 | #include "mx.h" |
| 29 | 29 | #include "url.h" |
| 30 | | |
| 31 | | #include "reldate.h" |
| 32 | 30 | |
| 33 | 31 | #ifdef USE_IMAP |
-
|
r4640
|
r4667
|
|
| 1650 | 1650 | { |
| 1651 | 1651 | /* Add a vanity header */ |
| 1652 | | fprintf (fp, "User-Agent: Mutt/%s\n", MUTT_VERSION); |
| | 1652 | fprintf (fp, "User-Agent: Mutt/%s-%s\n", MUTT_VERSION, ReleaseDate); |
| 1653 | 1653 | } |
| 1654 | 1654 | |