masqmail

annotate NEWS @ 323:29de6a1c4538

Fixed an important bug with folded headers! g_strconcat() returns a *copy* of the string, but hdr->value still pointed to the old header (which probably was a memory leak, too). If the folded part had been quite small it was likely that the new string was at the same position as the old one, thus making everything go well. But if pretty long headers were folded several times it was likely that the new string was allocated somewhere else in memory, thus breaking things. In result mails to lots of recipients (folded header) were frequently only sent to the ones in the first line. Sorry for the inconvenience.
author meillo@marmaro.de
date Fri, 03 Jun 2011 09:47:27 +0200
parents 9d88a7d55f53
children a4d8f20a992f
rev   line source
meillo@48 1 This NEWS file lists changes which may be important for you, especially
meillo@41 2 in regard to compatiblity in upgrades.
meillo@41 3
meillo@41 4 See ChangeLog file for more details and technical changes that don't
meillo@41 5 affect users directly.
meillo@41 6
meillo@41 7 The manual pages describe newly added options. Take them for reference.
meillo@41 8
meillo@41 9
meillo@253 10 0.3.1
meillo@253 11
meillo@287 12 - Changed the SMTP greeting behavior to match RFC 2821 (always try EHLO
meillo@287 13 first). Now always an EHLO greeting is sent first, no matter what kind of
meillo@287 14 greeting text the server had sent. If the EHLO failes, an HELO greeting
meillo@287 15 is tried as fall back. This change will fix setups in which it hadn't
meillo@287 16 been possible to send mail because the server required AUTH but hadn't
meillo@287 17 said ``ESMTP'' in its greeting message. Thanks to inne for pointing me
meillo@287 18 on that. This fixes also Debian bug #349211.
meillo@253 19
meillo@253 20 - The postmaster address is now matched caseless, as required by RFC.
meillo@253 21
meillo@291 22 - -qo (without argument) is now considered obsolete. Its behavior (online
meillo@291 23 detect and send over the available route) is included in -q. One may
meillo@291 24 simply use -q instead. In the -qo case no local mail is sent, but why
meillo@291 25 would be not want to do so? -qo (without arg) is still working but will
meillo@291 26 likely change its behavior to something more useful in the future.
meillo@291 27
meillo@287 28 - Command line address arguments are now added to the recipient
meillo@287 29 list instead of substracted, when -t is used. This coveres a rare
meillo@287 30 corner-case. It is a change from exim's behavior to postfix's.
meillo@287 31
meillo@287 32 - Several changes were made related to the operation modes: The situation
meillo@287 33 within the modes was made clear (see man page of masqmail(8)). If more
meillo@287 34 than one mode is specified then masqmail aborts. For the default operation
meillo@287 35 mode ``accept messages on stdin'' the command line switch -bm was added
meillo@287 36 (similar to othe MTAs). If masqmail is called without arguments, the
meillo@287 37 version information is printed now.
meillo@287 38
meillo@253 39 - The command line option -m is recognized now (although ignored).
meillo@253 40 Unknown -oXXX options are ignored. Some software (like spost of nmh)
meillo@253 41 calls the MTA with -m. This is mainly a relict of old sendmail times
meillo@253 42 but needed for compatibility.
meillo@253 43
meillo@258 44 - The implementation of the command line option -oem had been
meillo@258 45 weird. Now specifying -oem or -oee results in a (some kind of dumb but)
meillo@258 46 logical behavior. Common users will probably not notice any difference.
meillo@258 47 The changes affect only the exit code of the corner-case: Calling masqmail
meillo@258 48 with -oem but without -oi/-i while submitting messages on stdin.
meillo@258 49
meillo@287 50 - Fixed the recognition of lists of unqualified addresses in headers
meillo@287 51 when using -t. E.g. `To: alice, bob'.
meillo@287 52
meillo@253 53 - Renamed the config file option `alias_local_caseless' to
meillo@253 54 `caseless_matching' because the option affects any address matching.
meillo@253 55
meillo@253 56 - Renamed the default route for the local network to
meillo@253 57 `default local_net_route'. This is only of interest for log/debug file
meillo@253 58 studies.
meillo@253 59
meillo@253 60 - Improved and updated the man page for masqmail(8), especially in
meillo@253 61 respect to -oem which appears to be wrongly implemented. Minor
meillo@253 62 improvements of debug messages.
meillo@253 63
meillo@253 64
meillo@159 65 0.3.0
meillo@159 66
meillo@230 67 - Start of the new development branch. Attention: Backward
meillo@230 68 compatibility with 0.2.x versions will *NOT* be maintained. Upgrading
meillo@230 69 from 0.2.x to 0.3.x will probably require manual adjustment of the
meillo@230 70 configuration. The script admin/config-tansition can be used to check
meillo@230 71 the config files for obsolete options.
meillo@230 72
meillo@230 73 - Removed POP3 support (also pop-before-smtp/smtp-after-pop). Use some
meillo@230 74 other POP3 client instead.
meillo@230 75
meillo@230 76 - Removed maildir support. Use an MDA, like procmail, to deliver to
meillo@230 77 maildir.
meillo@230 78
meillo@230 79 - Removed the built-in mserver functionality. Use the mservdetect
meillo@230 80 program instead. See masqmail.conf(5) under `online_pipe' for details.
meillo@230 81
meillo@230 82 - Removed --disable-smtp-server and --with-glib-static configure
meillo@230 83 options. We see no more need to not compile the SMTP server function.
meillo@230 84 For static linking, see docs/howto-static-linking.
meillo@230 85
meillo@230 86 - `host_name' is the only mandatory config option now. If you only set
meillo@230 87 host_name, then masqmail will:
meillo@230 88 o accept mail on the command line
meillo@230 89 o listen on the local port 25 for incoming mail
meillo@230 90 o deliver mail locally
meillo@230 91 o not know how to handle mail for remote destinations
meillo@230 92 Therefore you should set up at least one route configuration.
meillo@230 93
meillo@230 94 - Default values are available for: listen_addresses, local_hosts,
meillo@230 95 log_dir, spool_dir, mail_dir. See masqmail.conf(5) for the values.
meillo@230 96
meillo@230 97 - Mservdetect works much better now.
meillo@230 98
meillo@230 99 - Improved the documentation:
meillo@230 100 o Added setup guides
meillo@230 101 o Improved and simplified the example config
meillo@230 102 And removed the old manual because it is really outdated now.
meillo@230 103
meillo@230 104 - Renamed misc/ to devel/ and contrib/ to admin/. devel/ contains
meillo@230 105 stuff for developers of masqmail, admin/ contains stuff for people who
meillo@230 106 install, upgrade, and configure masqmail.
meillo@230 107
meillo@230 108
meillo@230 109 0.2.28
meillo@230 110
meillo@230 111 - Added STARTTLS support with external wrappers like OpenSSL. See
meillo@230 112 `wrapper' and `instant_helo' in masqmail.route(5) for examples how to
meillo@230 113 use it. `instant_helo' is a new route config option.
meillo@230 114
meillo@230 115
meillo@230 116 0.2.27
meillo@230 117
meillo@230 118 - Replaced contributed code with possible licensing problems with
meillo@230 119 alternatives. The MD5 implementation changed from the reference
meillo@230 120 implementation of RFC 1321 to the Public Domain implementation of
meillo@230 121 Solar Designer. The HMAC-MD5 implementation changed from the reference
meillo@230 122 implementation of RFC 2104 to an own implementation (ISC License).
meillo@230 123
meillo@230 124 - Added the authors of contributed parts to the AUTHORS file.
meillo@230 125
meillo@230 126
meillo@230 127 0.2.26
meillo@230 128
meillo@230 129 - Write a log message when the daemon starts up. Thanks to Juergen
meillo@230 130 Daubert.
meillo@230 131
meillo@230 132 - Fix handling of --with-liblockfile=no or --without-liblockfile for
meillo@230 133 configure script. Thanks to Nico Roeser.
meillo@230 134
meillo@230 135 - Improved the INSTALL file and some man pages. Thanks to Nico Roeser
meillo@230 136 Improved the documentation of the wrapper option of route files.
meillo@159 137
meillo@159 138
meillo@126 139 0.2.25
meillo@126 140
meillo@126 141 - Added server-side SMTP SIZE support. Thanks to Paolo.
meillo@126 142
meillo@126 143 - Masqmail will from now on:
meillo@143 144 o always remove Bcc: headers
meillo@143 145 o never create headers from envelope recipients
meillo@143 146 o add ``To: undisclosed-recipients:;'' if no recipient header (To:
meillo@126 147 or Cc:) is present in the mail
meillo@126 148
meillo@126 149 - Colons (`:') don't need to be quoted in the config file anymore.
meillo@126 150 Thanks to Paolo.
meillo@126 151
meillo@143 152 - Added checks for too long addresses in SMTP dialog. Thanks to Paolo.
meillo@143 153
meillo@149 154 - Moved rmail to sbin and added a man page for it.
meillo@126 155
meillo@149 156 - Added warnmsg.tpl.it. Thanks to Paolo.
meillo@149 157
meillo@149 158 - The tests do not get installed any longer. All on install created
meillo@149 159 dirs are removed on uninstall, except they contain generated data like
meillo@149 160 logs, spooled files, or configuration.
meillo@126 161
meillo@143 162 - Documented some, yet undocumented, config options. Several typo
meillo@143 163 fixes in man pages and code comments.
meillo@126 164
meillo@126 165
meillo@77 166 0.2.24
meillo@77 167
meillo@77 168 - This version keeps on logging after an restart of the deamon, for
meillo@77 169 instance when sending SIGHUP to the daemon process for rereading its
meillo@77 170 config.
meillo@77 171
meillo@77 172 - Now the daemon keeps the same process id when it receives SIGHUP to
meillo@77 173 reread the config.
meillo@77 174
meillo@77 175 - Mail messages with lines longer than 4096 characters do not get
meillo@77 176 truncated anymore.
meillo@77 177
meillo@94 178 - Fixed checking of the trusted group. Primary groups are now
meillo@94 179 detected too.
meillo@94 180
meillo@94 181 - Mservdetect's man page is now in section 1.
meillo@94 182
meillo@94 183 - An `rmail' command is now included and gets installed with
meillo@94 184 masqmail. See docs/uucp-setup for more information.
meillo@94 185
meillo@94 186 - Docs and thelike, that masqmail installs, is removed on uninstall
meillo@94 187 now.
meillo@94 188
meillo@77 189
meillo@53 190 0.2.23
meillo@53 191
meillo@53 192 - This release fixes a major bug in 0.2.22 which made online detection
meillo@53 193 by file unusable. Thanks to Juergen Daubert for reporting and providing
meillo@53 194 a patch.
meillo@53 195
meillo@69 196 - Masqmail installs to /usr/local by default now. Previously it
meillo@69 197 installed to /usr. To regain the old behavior, add
meillo@69 198 --prefix=/usr
meillo@69 199 to the configure call.
meillo@69 200
meillo@69 201 - Man pages get installed again; in 0.2.22 they were not. Again thanks
meillo@69 202 to Juergen Daubert. Docs and examples do get installed now too.
meillo@69 203
meillo@69 204 - Updated the docs. Moved the man pages from docs/ to man/. Added the
meillo@69 205 old manual from the old website to the distribution. Added a bug
meillo@69 206 reporting howto.
meillo@69 207
meillo@53 208
meillo@42 209 0.2.22
meillo@41 210
meillo@41 211 - Hello, I'm meillo, the new maintainer and developer of masqmail. Oku
meillo@48 212 handed masqmail over to me, because he wasn't active anymore.
meillo@41 213
meillo@41 214 - This release includes various fixes for problems in 0.2.21, mainly
meillo@41 215 based on bugs from Debian.
meillo@41 216
meillo@41 217 - Distribution specific data has been excluded from the distribution,
meillo@48 218 but is separately available on the project's website.
meillo@41 219
meillo@41 220 - Man pages will not be generated from xml sources in future, but the
meillo@41 221 nroff sources will be maintained directly.
meillo@41 222
meillo@41 223 - The default online status file is now
meillo@41 224 /var/run/masqmail/masqmail-route, as it already was in the Debian
meillo@41 225 package.
meillo@41 226
meillo@48 227
meillo@41 228 0.2.21
meillo@41 229
meillo@41 230 - Retrospective: Probably, this version was not published in the usual
meillo@41 231 way by oku. I (meillo) grabbed it from Debian's package archive. It does
meillo@41 232 not introduce new functions but fixes security problems, such as writing
meillo@41 233 log files as user `mail'. It also changes the location for pid files;
meillo@41 234 they are stored in /var/run/masqmail/ now.
meillo@0 235
meillo@48 236
meillo@0 237 0.2.18
meillo@0 238
meillo@48 239 - delivery warnings and failures are now also implemented if the
meillo@0 240 connection to a server fails. Because masqmail is designed for dialup
meillo@0 241 networks, a connection failure will merely generate a warning by default.
meillo@0 242 If you deliver in a local network and use the default local_net route,
meillo@0 243 this would generte a failure. You can change this behaviour by setting
meillo@41 244 'connect_error_fail' to either true or false in the route configurations.
meillo@0 245
meillo@0 246 0.2.17
meillo@0 247
meillo@0 248 - delivery warnings have been finally implemented: if delivery of a mail
meillo@0 249 fails temporarily, warning mail will be generated, informing the sender
meillo@0 250 of the problem. After some time, the mail will be handled as failing
meillo@0 251 permanently, and be bounced. New options: 'warn_intervals',
meillo@0 252 'max_defer_time' and 'warnmsg_file'.
meillo@0 253
meillo@0 254 - the message templates for failures and warnings will now be installed
meillo@0 255 into /usr/share/masqmail/tpl/, and no longer to /etc/masqmail/tpl/. The
meillo@0 256 default for the search path (options 'errmsg_file' and 'warnmsg_file'
meillo@0 257 has been changed accordingly.
meillo@0 258
meillo@0 259 - new option 'last_route'. See man 5 masqmail.route.
meillo@0 260
meillo@0 261 0.2.12
meillo@0 262 two new options have been added:
meillo@0 263 - do_pipelining will be used only in broken mail setups. Actually, I
meillo@0 264 implemented it only to test such a setup.
meillo@0 265
meillo@0 266 - helo_name for routes sets the helo_name. This may be useful for
meillo@0 267 eg. ssh tunneling, or if do_correcthelo does not work, because you are
meillo@0 268 behind a firewall.
meillo@0 269
meillo@0 270 - the old 'remote_port' option should not be used any more. Set the
meillo@0 271 port with mail_host="foo.bar.com:1234" in the route file instead.
meillo@0 272
meillo@0 273 0.2.11
meillo@0 274
meillo@0 275 - two new options have been added: do_save_envelope_to for the main
meillo@0 276 configuration and map_h_mail_followup_to_addresses for the route
meillo@0 277 files. See the man pages on purpose and usage.
meillo@0 278
meillo@0 279 - the route files can now be mode 0400, owned by root. Previous
meillo@0 280 versions had problems when sendmail was called directly by a
meillo@0 281 non-priviledged user, because the route files could not be read.
meillo@0 282
meillo@0 283 0.2.10
meillo@0 284
meillo@0 285 - this version should work on FreeBSD. At least I care now if it does not.
meillo@0 286
meillo@0 287 - masqmail now writes pid files to /var/run/, one for the smtp/queue
meillo@0 288 daemon and one for the get daemon. So you now know whom to kill ;-)
meillo@0 289
meillo@0 290 - much effort has been put into the Debian package, which now uses debconf.
meillo@0 291
meillo@0 292 0.2.7
meillo@0 293
meillo@0 294 - sorry for my reluctany in the last months...
meillo@0 295 - my email address is oku@masqmail.cx. I hope that I keep this for the rest
meillo@0 296 of my life...
meillo@0 297
meillo@0 298 0.2.6
meillo@0 299
meillo@0 300 - you can configure the prefered local delivery mechanism for each user. See
meillo@0 301 man page masqmail.conf (5), options mbox_default, mbox_users, mda_users and
meillo@0 302 maildir_users. BIT FAT NOTE: if you used an mda, set mbox_default = "mda"
meillo@0 303 (or use the mda_users option). Just setting mda is not enough any more.
meillo@0 304
meillo@0 305 - there are the allowed_return_paths and not_allowed_return_paths for the
meillo@0 306 route configurations, this enables better checking for return path addresses
meillo@0 307 than allowed_mail_locals. You can also use this to enable or disable messages
meillo@0 308 from null sender addresses (<>) using "<>".
meillo@0 309 note: this option has been there for quite a time... I just forgot to document it.
meillo@0 310
meillo@0 311 0.2.5
meillo@0 312
meillo@0 313 - simple relay checking: if you set do_relay=false in masqmail.conf, users
meillo@0 314 with a return path that is not local will get a 550 reply if they try to
meillo@0 315 deliver to a not local address. This is for users to force them to have a
meillo@0 316 proper configuration. It is _not_ to prevent spammers from using your MTA
meillo@0 317 as a relay, it can be easily forged! masqmail is not designed to be an always
meillo@0 318 accessible MTA for an internet site.
meillo@0 319
meillo@0 320 - added Maildir support. To use it, add --enable-maildir as ./configure
meillo@0 321 optiom. Currently, if enabled, all local deliveries are to Maildir
meillo@0 322 (in ~user/Maildir), and none to mailbox. This is preliminary, future versions
meillo@0 323 will be configurable (probably together with mda delivery).
meillo@0 324
meillo@0 325 0.2.4
meillo@0 326
meillo@0 327 - added -v option, this logs to stdout, so you see what happens when
meillo@0 328 calling masqmail from command line. This is not yet finished, and only
meillo@0 329 for fetching mails completed.
meillo@0 330
meillo@0 331 0.2.3
meillo@0 332
meillo@0 333 - new option lock_dir where locks will be put to. Defaults to the spool
meillo@0 334 dir with '/lock/' appended (if spool_dir is /var/spool/masqmail/, lock_dir
meillo@0 335 is /var/spool/masqmail/lock/).
meillo@0 336
meillo@0 337 - You can use the 'do_uidl_dele' option more reliably. The uidl list
meillo@0 338 will be written immediately after a message was fetched, so if you use the
meillo@0 339 do_uidl and do_uidl_dele option you can safely interrupt masqmail when it is
meillo@0 340 getting mail via pop3, and do not get the message again next time.
meillo@0 341
meillo@0 342 - there are a lot of new options for ./configure to customize masqmail
meillo@0 343 to your needs. See INSTALL.
meillo@0 344
meillo@0 345 - Uli Funcke sent a patch with the new options 'local_addresses' and
meillo@0 346 'not_local_addresses' for masqmail.conf. With these, you can declare single
meillo@0 347 email addresses as local, though they normally are not, and vice versa,
meillo@0 348 declare addresses as not local though normally they are (determined with
meillo@0 349 local_hosts). These options are not yet documented.
meillo@0 350
meillo@0 351 0.2.2
meillo@0 352 - with -go5m you can now run a get daemon, the command 'masqmail -go5m' will fetch
meillo@0 353 mail every five minutes, using the detected online configuration.
meillo@0 354
meillo@0 355 0.2.1
meillo@0 356
meillo@0 357 - there is a new option for the main conf: online_gets. Using this option,
meillo@0 358 you can retrieve mail with just calling masqmail -go, masqmail will detect
meillo@41 359 whether it is online (similar to connect_routes (which is now called
meillo@0 360 online_routes)).
meillo@0 361
meillo@0 362 0.2.0
meillo@0 363
meillo@0 364 This is the first release of he development branch of masqmail
meillo@0 365
meillo@0 366 - the default configuration is now /etc/masqmail/masqmail.conf
meillo@0 367 (as it already was for the debian package). The --with-conffile
meillo@0 368 option for configure has been replaced by the --with-confdir option.
meillo@0 369
meillo@0 370 - added delivery failure notices:
meillo@0 371 o you can customize your own delivery failure report, its
meillo@0 372 default location is /etc/masqmail/tpl/failmsg.tpl
meillo@0 373 o if a delivery via a route fails permanently (the server replied with a 5xx status)
meillo@0 374 the message will be bounced, if it is bounced, no further delivery will be attempted.
meillo@0 375 This is different to previous versions, where failed messages were kept in the queue until
meillo@0 376 it was finally delivered, deleted or forever.
meillo@0 377
meillo@0 378 - there is a new online detection method: pipe. This allows you more
meillo@0 379 flexibility to detect the current online status, eg. the DHCP status on notebooks.
meillo@0 380
meillo@0 381 This method will once replace the 'mserver' option,
meillo@0 382 you can already use the program mservdetect to use it:
meillo@0 383
meillo@0 384 online_method=pipe
meillo@0 385 online_pipe="/usr/bin/mservdetect localhost 222"
meillo@0 386
meillo@0 387 instead of
meillo@0 388
meillo@41 389 online_detect=mserver
meillo@0 390 mserver_iface="localhost:222"
meillo@0 391
meillo@0 392 0.1.9
meillo@0 393
meillo@0 394 - you can use pipes in routes to implement gateways to uucp, fax, sms etc.
meillo@0 395 The setup is similar to mda transport. See man pages.
meillo@0 396
meillo@0 397 - for each connection (connect_routes), you can now give a list of
meillo@0 398 route files, which will be used in the order given. You can use the
meillo@0 399 filter rules (allowed_* and not_allowed_* rules) within each route.
meillo@0 400
meillo@0 401 0.1.8
meillo@0 402
meillo@0 403 - for pop retrieval and smtp sending you can use a wrapper for eg. ssl
meillo@0 404 tunneling. See man pages.
meillo@0 405
meillo@0 406 - a user can delete his mail from the spool with -Mrm if received
meillo@0 407 locally, and if you configure with --enable-ident and set
meillo@0 408 ident_trusted_nets also if received via smtp.
meillo@0 409
meillo@0 410 - a backslash now works to escape characters in the configuration, so
meillo@0 411 you can now use quotes inside quotes. All other characters with a
meillo@0 412 leading backslash will be converted to itself (\a becomes a, \\
meillo@0 413 becomes \).
meillo@0 414
meillo@0 415 - you can now use an mda for local mails. The mda will be called
meillo@0 416 *after* alias expansion. See documentation for more.
meillo@0 417
meillo@0 418 0.1.0
meillo@0 419 - masqmail can now retrieve mail with pop3. See the manual on how to do that.
meillo@0 420 - supports now ESMTP AUTH as a client.
meillo@0 421 - when called with -qo (without a connection name), the online status
meillo@0 422 will be checked with the configured method.
meillo@0 423
meillo@0 424 0.0.10
meillo@0 425 - there is now alias support. Give the location of the alias file (usually /etc/aliases) with eg.
meillo@0 426 alias_file = "/etc/aliases"
meillo@0 427 - delivery to pipes is now possible, but only if it appears in an alias file. Example:
meillo@0 428 pipe: |/usr/bin/command
meillo@0 429 will expand the address pipe to "|/usr/bin/command" which invokes '/usr/bin/command'
meillo@0 430 as the user and group masqmail is running as.
meillo@0 431 - entries starting with '\' in alias files will not be exanded further
meillo@0 432
meillo@0 433 - changed permissions for queue runs again: got to be root, mail or in group trusted.
meillo@0 434
meillo@0 435 - some configuration parameters can be read from files, these are
meillo@0 436 allowed_mail_locals, not_allowed_mail_locals, allowed_rcpt_domains, not_allowed_rcpt_domains,
meillo@0 437 map_return_path_addresses, map_h_from_addresses, map_h_reply_to_addresses
meillo@0 438 any entry in these list beginning with a '/' are regarded as
meillo@0 439 filenames, the content of these will be put at that location. Entries
meillo@0 440 in these files are separated by new lines. Example:
meillo@0 441 in the route file you have:
meillo@0 442 map_h_from_addresses = "/etc/masqmail/hfrom.map"
meillo@0 443 and hfrom.map contains:
meillo@0 444
meillo@0 445 john: John Smith <jsmith@mail.academic.edu>
meillo@0 446 cmiller: "Charlie Miller" <cmiller@foo.com>
meillo@0 447
meillo@0 448 UPDATE (Jan 2000): The new home location of MasqMail is
meillo@0 449 http://www.innominate.org/~oku/masqmail/, the new email adress of the
meillo@0 450 author is Oliver Kurth <kurth@innominate.de>.
meillo@0 451
meillo@0 452 0.0.9
meillo@0 453 - see ChangeLog.
meillo@0 454
meillo@0 455 NOTE: The home location of MasqMail at
meillo@0 456 http://merlin.uni-sw.gwdg.de/~okurth/masqmail/ is uncertain from the
meillo@0 457 beginning of Nov. 1999! See http://www.freshmeat.net for new
meillo@0 458 announcements. I leave the university and begin a new job on Nov. 1st 1999
meillo@0 459 in Berlin :-).
meillo@0 460
meillo@0 461 0.0.8:
meillo@0 462 - there is now a FAQ page. See docs/faq.html.
meillo@0 463 - added allowed_rcpt_domains option for routes.
meillo@0 464 - added allowed_mail_locals and not_allowed_mail_locals options for routes.
meillo@0 465 - mailq now gives information about the time mails spent in the queue,
meillo@0 466 the message size and the received host.
meillo@0 467
meillo@0 468 0.0.7:
meillo@0 469 -bug fix release: for statements in two adjacent lines, the second was not recognized.
meillo@0 470
meillo@0 471 0.0.6:
meillo@0 472 - bug fix release: some MUAs (cucipop) saw the locally delivered mails
meillo@0 473 concatenated. (cucipop is not a MUA but a pop server, but it has to read the
meillo@0 474 mails).
meillo@0 475
meillo@0 476 0.0.5:
meillo@0 477 - fixed a bug that caused the headers to be lost under some circumstances.
meillo@0 478 - added expand_h_sender_domain option for routes.
meillo@0 479 - rewrote the libresolv part in configure. Should work better now.
meillo@0 480
meillo@0 481 0.0.4:
meillo@0 482 - MM should now recognize whether libresolv should be linked.
meillo@0 483 - added --with-logdir=LOGDIR and --with-spooldir=SPOOLDIR to set directories.
meillo@0 484 These will be created if not already existent.
meillo@0 485 - added --with-user=USER, --with-group=GROUP options to set user and group id
meillo@0 486 for MasqMail.
meillo@0 487
meillo@0 488 0.0.3:
meillo@0 489 - MasqMail can now deliver mails that are received at online
meillo@0 490 time immediately to the internet. See the options detect_online,
meillo@0 491 mserver_iface and online_file.
meillo@0 492 - You can define a route configuration for the local net. See option
meillo@0 493 local_net_route.
meillo@0 494