Skip to content
Snippets Groups Projects
  1. Apr 26, 2019
  2. Apr 25, 2019
  3. Apr 23, 2019
  4. Apr 22, 2019
  5. Apr 17, 2019
  6. Apr 16, 2019
    • rswindell's avatar
      Add a new quotewrap_cols setting for external editors, default is 0 (current · a927b8a2
      rswindell authored
      terminal width) - only used when the QUOTEWRAP option is set. Common values:
      0 - current behavior, wrap the quote file to the current terminal width
      80 - wrap 80 columns specifically (actually, 79)
      9999 - unwrap to long lines (one line per paragraph)
      a927b8a2
    • rswindell's avatar
      Add a new quotewrap_cols setting for external editors, default is 0 (current · 127e0b6e
      rswindell authored
      terminal width) - only used when the QUOTEWRAP option is set. Common values:
      0 - current behavior, wrap the quote file to the current terminal width
      80 - wrap 80 columns specifically (actually, 79)
      9999 - unwrap to long lines (one line per paragraph)
      
      Actually, previously it was wrapping to current terminal width minus 4 when
      QUOTEWRAP was enabled. Now, make that current terminal width minus 1
      (when quotewrap_cols is set to 0).
      127e0b6e
  7. Apr 15, 2019
  8. Apr 12, 2019
  9. Apr 11, 2019
  10. Apr 10, 2019
  11. Apr 09, 2019
  12. Apr 06, 2019
    • rswindell's avatar
      MsgBase.put_msg_header() now updates the internal (smbmsg_t) representation · 53c677c3
      rswindell authored
      of the message header so that functions that need it (e.g. bbs.show_msg_header)
      don't use/show stale data. This change requires the updated smb_copymsgmem()
      which clear/sets message convenience pointers upon copying hfields from one
      message header to another.
      53c677c3
    • rswindell's avatar
      New MsgBase method: get_index() - returns an array of all message index records · 75417a26
      rswindell authored
      (objects, in the same format as returned by the get_mgs_index() method)
      much faster than iterating through a loop, calling the get_msg_index() method
      for each message. If you want to load messages (e.g. headers, text), filtering
      by criteria found in the message index (attributes, to/from user, subject CRC)
      loading a list of indexes and filtering before calling get_msg_header() for the
      selected messages is much faster than previously available MsgBase object
      methods (e.g. get_all_msg_headers()). If you don't need to filter the loaded
      messages (you really want *all* message headers), then get_index() is of no
      benefit to you, the script-writer. This is most useful for the "mail" msgbase
      where selective loading of messages is more common.
      75417a26
Loading