[go: up one dir, main page]

Activity for Bill Wohler

  • Bill Wohler Bill Wohler modified ticket #482

    Incorrect usage of cl-flet

  • Bill Wohler Bill Wohler posted a comment on ticket #482

    I'm going to have to agree with Mike. We'll put the flet bug to rest unless we hear otherwise. Resolving as fixed.

  • Bill Wohler Bill Wohler posted a comment on ticket #494

    Fixed in a058d61615.

  • Bill Wohler Bill Wohler modified ticket #494

    mh-funcall-if-exists ignores function if it wasn't there at compile time

  • Bill Wohler Bill Wohler posted a comment on ticket #494

    This wasn't the only unused macro. The list of unused macros in mh-acros.el is: mh-do-in-gnu-emacs, mh-do-in-xemacs, mh-funcall-if-exists, defun-mh, defmacro-mh, mh-make-local-hook,mh-mark-active-p. These have been deleted on the master branch.

  • Bill Wohler Bill Wohler committed [r615] on Code

    Change http: scheme to https:

  • Bill Wohler Bill Wohler committed [r614] on Code

    Change http: scheme to https:

  • Bill Wohler Bill Wohler committed [r613] on Code

    Update externals URL for htdocs

  • Bill Wohler Bill Wohler modified a comment on ticket #503

    Mike was wondering why the folder name is tied to the underlying search engine, and I would tend to agree that we should use the same folder name regardless of the search engine. Here's the search template: From: To: Cc: Date: Subject: I like the brevity of the mairix keywords. Thus, our folder name pattern could be: f:<from>_t:<to>_c:<cc>_d:<date>_s:<subject>_b:<body>_a:<anywhere>. It looks like it can be easily done by updating (mh-index-do-search) to pass regexp-list instead of pattern to (mh-search)....

  • Bill Wohler Bill Wohler modified a comment on ticket #503

    Mike was wondering why the folder name is tied to the underlying search engine, and I would tend to agree that we should use the same folder name regardless of the search engine. Here's the search template: From: To: Cc: Date: Subject: I like the brevity of the mairix keywords. Thus, our pattern could be: f:<from>_t:<to>_c:<cc>_d:<date>_s:<subject>_b:_a:<anywhere>.</anywhere></subject></date></cc></to></from> It looks like it can be easily done by updating (mh-index-do-search) to pass regexp-list...

  • Bill Wohler Bill Wohler posted a comment on ticket #503

    Mike was wondering why the folder name is tied to the underlying search engine, and I would tend to agree that we should use the same folder name regardless of the search engine. Here's the search template: From: To: Cc: Date: Subject: I like the brevity of the mairix keywords. Thus, our pattern could be: f:<from>_t:<to>_c:<cc>_d:<date>_s:<subject>_b:_a:<anywhere>.</anywhere></subject></date></cc></to></from> It looks like it can be easily done by updating (mh-index-do-search) to pass regexp-list...

  • Bill Wohler Bill Wohler modified a comment on ticket #503

    I wanted to understand this a little better, so I ran (mh-pick-parse-search-buffer) on a search buffer with 123 in all fields. I then put the result in the variable "foo". Here are the results of calling the various regexp-builders and mh-index-generate-pretty-name. (setq foo '((nil . "123") (subject . "123") (date . "123") (cc . "123") (to . "123") (from . "123"))) (mh-swish++-regexp-builder foo) -> " 123 and (subject = 123) and (date = 123) and (cc = 123) and (to = 123) and (from = 123)" (mh-index-generate-pretty-name...

  • Bill Wohler Bill Wohler posted a comment on ticket #503

    I wanted to understand this a little better, so I ran (mh-pick-parse-search-buffer) on a search buffer with 123 in all fields. I then put the result in the variable "foo". Here are the results of calling the various regexp-builders and mh-index-generate-pretty-name. (setq foo '((nil . "123") (subject . "123") (date . "123") (cc . "123") (to . "123") (from . "123"))) (mh-swish++-regexp-builder foo) -> " 123 and (subject = 123) and (date = 123) and (cc = 123) and (to = 123) and (from = 123)" (mh-index-generate-pretty-name...

  • Bill Wohler Bill Wohler posted a comment on ticket #499

    You thought that "goto-address should leave text alone if it's already been propertized." And Eli seems to agree, but it seems that it might be risky at this late date. I might tend to agree. In your initial analysis, you suggested not using mh-show-addr if shr was in use. This seems much safer. You mention that shr allows one to click on the email address, so perhaps not too much is lost. Indeed, MH-E defers to other packages in most cases, so perhaps mh-show-addr should only be used as a last ...

  • Bill Wohler Bill Wohler posted a comment on ticket #502

    I'd be inclined to do the same thing as mh-letter-complete if an alternative is available. That is, to rip out the function and mark it obsolete with its replacement. For example: +(define-obsolete-function-alias 'mh-letter-complete + #'completion-at-point "29.1") Otherwise, yes, just mark it obsolete and remove it in the next major version.

  • Bill Wohler Bill Wohler posted a comment on ticket #498

    Sounds good. Hmmm, I wonder if we have other sleeping cd calls in our code... Mike Kupfer via mh-e-devel mh-e-devel@lists.sourceforge.net wrote: Yeah, I totally misread the docstring for "with-existing-directory", so forget that idea. Note that when saving attachments, it's a feature that the chosen directory is used the next time, so I'm not sure you'd want to switch directories back after the method. mh-mime-save-parts saves the chosen directory in mh-mime-save-parts-directory, which will get used...

  • Bill Wohler Bill Wohler posted a comment on ticket #498

    Looking at the manual for with-existing-directory, the macro looks at default-directory rather than taking a directory as an argument. It doesn't say what it does if default-directory doesn't exist. Note that when saving attachments, it's a feature that the chosen directory is used the next time, so I'm not sure you'd want to switch directories back after the method. If with-existing-directory isn't helpful, I guess we should check for the existence of default-directory and cd to $HOME if it doesn't...

  • Bill Wohler Bill Wohler posted a comment on ticket #496

    In particular, the macros mh-do-in-gnu-emacs and mh-do-in-xemacs can be removed. The code wrapped by the former can be run unadorned and code wrapped by the latter can be deleted. The mh-funcall-if-exists macro should also be removed. Matthias made the following observation: This code in mh-junk.el (mh-spamassassin-allowlist) probably doesn't work as intended: (setq from (car (mh-funcall-if-exists ietf-drums-parse-address (mh-get-header-field "From:")))) Even if ietf-drums-parse-address were available,...

  • Bill Wohler Bill Wohler created ticket #496

    Remove XEmacs support

  • Bill Wohler Bill Wohler posted a comment on ticket #473

    Good point, Mark. Thanks! I use !' when a message doesn't have a default folder. If the last folder was changed with a copy (which I use mainly now to put in my +todo hierarchy), a subsequent!' would put the next message in +todo (which I don't want) instead of the last folder I used for the individual or company (which I do). Mark Baushke mbaushke@gmail.com wrote: I actually do not agree with such a change. I often copy a message into a folder based on a topic and refile the same message into a...

  • Bill Wohler Bill Wohler posted a comment on ticket #491

    Test comment, please ignore.

  • Bill Wohler Bill Wohler posted a comment on ticket #254

    See #479, which may be a duplicate and contains a test message.

  • Bill Wohler Bill Wohler posted a comment on ticket #479

    It seems that way. If John's message reproduces the problem, and Peter's fix resolves it, then it would seem so. This can then be resolved as a duplicate.

  • Bill Wohler Bill Wohler posted a comment on ticket #1286

    This is huge, thanks! I don't see the fix in 1.05 (from Debian backports). In what Linux version and when do you anticipate that this fix will be distributed?

  • Bill Wohler Bill Wohler posted a comment on ticket #1264

    Thanks, Rafael. I confirmed the fixes for items #1, #2, and #5 in 1.05 (via Debian backports).

  • Bill Wohler Bill Wohler posted a comment on ticket #491

    Hi Darel, I don't think so. The function mh-variant-gnu-mh-info has its own copy of the libdir component. We'd have to update the mh-variant-nmh-info component, probably by allowing both for backwards compatibility. We'd also have to look for both in mh-variant-mh-info which starts the process. Darel via mh-e-devel mh-e-devel@lists.sourceforge.net wrote: Will making any changes to MH-E because of the external nmh programs ( mhparam, etc.) cause any problems with gnu-mh (mailutils) libraries usage...

  • Bill Wohler Bill Wohler posted a comment on ticket #475

    Thanks, Greg. I see your patch on the ticket now, so it looks like you were eventually successful. minshall via mh-e-devel mh-e-devel@lists.sourceforge.net wrote: Mike, et al., would you be willing to try this small patch (plus customization)? i tried to post it on the bug entry, but (because i've posted "too often" recently? because i'm in Turkey, and nobody trusts IP connections from a host in Turkey?), i got some message about "spambot detection", and my post doesn't seem to have made it (yet?)....

  • Bill Wohler Bill Wohler posted a comment on ticket #485

    I'd follow any precedent that we already have in the code. I suspect that it may...

  • Bill Wohler Bill Wohler posted a comment on ticket #483

    Sounds good. Is K an appropriate prefix? In that case, I can imagine either K i[m]ages...

  • Bill Wohler Bill Wohler posted a comment on ticket #1286

    Has any progress been made on this? This problem hits me dozens of times a day and...

  • Bill Wohler Bill Wohler posted a comment on ticket #114

    Agreed, although I'd want the project name to be the default working directory, not...

  • Bill Wohler Bill Wohler committed [48621c]

    * devguide.texi (UPDATED): Updated.

  • Bill Wohler Bill Wohler committed [17eb98]

    Complete ChangeLog changes and update News.

  • Bill Wohler Bill Wohler committed [e1d908]

    * .gitignore: Add htdocs/doc/devguide.pdf.

  • Bill Wohler Bill Wohler posted a comment on ticket #482

    Here is Katsumi's reply to my response on 2013-04-05: Hi, Bill Wohler wrote: Thanks,...

  • Bill Wohler Bill Wohler posted a comment on ticket #482

    Katsumi had previously posted this in 2012-12-06: Hi, IMHO, isn't what you really...

  • Bill Wohler Bill Wohler modified ticket #482

    Incorrect usage of cl-flet

  • Bill Wohler Bill Wohler created ticket #482

    Incorrect usage of cl-flet

  • Bill Wohler Bill Wohler modified ticket #223

    mh-prefix-help broken in xemacs

  • Bill Wohler Bill Wohler modified ticket #224

    mh-display-with-external-viewer fails for parts w/o buttons

  • Bill Wohler Bill Wohler modified ticket #228

    Changing composition charset

  • Bill Wohler Bill Wohler modified ticket #229

    url-hexify-string does not handle non-Latin characters

  • Bill Wohler Bill Wohler modified ticket #230

    namazu documentation incorrect

  • Bill Wohler Bill Wohler modified ticket #232

    Quoted-printable ISO-8859-1 character not decoded

  • Bill Wohler Bill Wohler modified ticket #233

    Running MH-E without MH botches paths

  • Bill Wohler Bill Wohler modified ticket #235

    Add X-MHE-Checksum to mh-new-draft-cleaned-headers

  • Bill Wohler Bill Wohler modified ticket #246

    Speedbar select=>scan: prompt in minibuffer in wrong frame

  • Bill Wohler Bill Wohler modified ticket #248

    Mouse button 2 paste into header fields does not function

  • Bill Wohler Bill Wohler modified ticket #249

    Support refile -preserve switch

  • Bill Wohler Bill Wohler modified ticket #254

    MIME tag presence detection can fail

  • Bill Wohler Bill Wohler modified ticket #256

    Document downcasing of spamassassin image filenames

  • Bill Wohler Bill Wohler modified ticket #257

    Fix overlay handling

  • Bill Wohler Bill Wohler modified ticket #258

    Problem displaying umlauts and quoted-printable

  • Bill Wohler Bill Wohler modified ticket #259

    inc slow with large inbox

  • Bill Wohler Bill Wohler modified ticket #260

    Verify and document gnus PGP/MIME handling

  • Bill Wohler Bill Wohler modified ticket #261

    Document display of folded addresses

  • Bill Wohler Bill Wohler modified ticket #262

    Search aborts if indexed messages are missing

  • Bill Wohler Bill Wohler modified ticket #295

    Support S/MIME and EasyPG

  • Bill Wohler Bill Wohler modified ticket #304

    Add mh-w3m-push-button to contrib

  • Bill Wohler Bill Wohler modified ticket #304

    Add mh-w3m-push-button to contrib

  • Bill Wohler Bill Wohler modified ticket #305

    Add function to add .txt to filename attachments

  • Bill Wohler Bill Wohler modified ticket #366

    Monitor asynchronous delivery

  • Bill Wohler Bill Wohler modified ticket #370

    message/external-body is auto loaded

  • Bill Wohler Bill Wohler modified ticket #377

    Offer completions for application/octet-stream parts

  • Bill Wohler Bill Wohler modified ticket #378

    Use dired to include multiple files

  • Bill Wohler Bill Wohler modified ticket #449

    mh-index-sequenced-messages should handle any range

  • Bill Wohler Bill Wohler modified ticket #450

    Document scoped variables that are useful in hooks

  • Bill Wohler Bill Wohler modified ticket #451

    Indexing of archived mail

  • Bill Wohler Bill Wohler modified ticket #460

    Collapse and expand threads

  • Bill Wohler Bill Wohler modified ticket #464

    Digest suggestions

  • Bill Wohler Bill Wohler modified ticket #465

    Extract aliases from BBDB

  • Bill Wohler Bill Wohler created a blog post

    MH-E 8.6 released

  • Bill Wohler Bill Wohler committed [ee2b69]

    Remove extra $ in $TAG.

  • Bill Wohler Bill Wohler posted a comment on ticket #1287

    A close command should never kill the application. The escape key by convention cancels...

  • Bill Wohler Bill Wohler committed [5cd49a]

    Release MH-E version 8.6.

  • Bill Wohler Bill Wohler committed [c5662b]

    Generate a PDF of the Developers Guide.

  • Bill Wohler Bill Wohler committed [0b2a06]

    * src/Makefile (EMACS_OPTIONS): Remove obsolete...

  • Bill Wohler Bill Wohler committed [b6a9b9]

    * src/test-mh-e: Remove trunk from EMACS_SRC an...

  • Bill Wohler Bill Wohler committed [d4c467]

    Push tags after creating them.

  • Bill Wohler Bill Wohler committed [c63b12]

    * htdocs/doc/devguide.texi: Simple conversion o...

  • Bill Wohler Bill Wohler committed [926e0d]

    Ongoing Bazaar to Git conversion.

  • Bill Wohler Bill Wohler committed [4c7766]

    * htdocs/doc/devguide.texi (Backups): Add instr...

  • Bill Wohler Bill Wohler committed [a8ab07]

    Point TOP at same directory as other modules.

  • Bill Wohler Bill Wohler committed [cb138f]

    * doc/Makefile (EMACS_SRC): Change EMACS_SRC ba...

  • Bill Wohler Bill Wohler committed [8970ee]

    * htdocs/mh-e.php: Replace references to Bazaar...

  • Bill Wohler Bill Wohler committed [1302d6]

    * htdocs/screenshots/index.php (Screen Shots): ...

  • Bill Wohler Bill Wohler committed [74877b]

    * contrib/mh-frame.el: Replace references to Ba...

  • Bill Wohler Bill Wohler committed [a2b9a6]

    * src/release-utils (usage): Remove bzr reference.

  • Bill Wohler Bill Wohler committed [2adb30]

    * htdocs/manual/index.php: Replace references t...

  • Bill Wohler Bill Wohler committed [5b668c]

    Delete ChangeLog files per new Emacs conventions.

  • Bill Wohler Bill Wohler committed [cfce04]

    * config/Makefile: Switch to Git.

  • Bill Wohler Bill Wohler committed [0f04c2]

    Delete ChangeLog from Makefiles.

  • Bill Wohler Bill Wohler committed [e07c93]

    Add src/emacs to .gitignore.

  • Bill Wohler Bill Wohler committed [b6df29]

    Rename .bzrignore to .gitignore.

  • Bill Wohler Bill Wohler committed [a16dee]

    Switch src directory to Git.

  • Bill Wohler Bill Wohler committed [fce3eb]

    * doc/Makefile: Switch to Git.

  • Bill Wohler Bill Wohler committed [494403]

    * doc/README: Switch to Git.

  • Bill Wohler Bill Wohler committed [876d34]

    1. Initial SourceForge revision.

  • Bill Wohler Bill Wohler committed [ee323e]

    1. Initial mh-e version.

  • Bill Wohler Bill Wohler committed [f606bb]

    1. Initial version.

1 >