all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#28154: 26.0.50; suggestion to improve bug reporting interface for users who use webmail
@ 2017-08-20  4:45 Zachary Kanfer
  2017-08-20 14:21 ` Eli Zaretskii
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Zachary Kanfer @ 2017-08-20  4:45 UTC (permalink / raw)
  To: 28154

[-- Attachment #1: Type: text/plain, Size: 1123 bytes --]

This fell out of a conversation with Eli Zaretskii on reddit.

report-emacs-bug has methods to attempt to send the bug via email, but
this does not work well for users who do have not configured either
Emacs or an installed email client on their computer. Accessing email
via webmail has become very popular, and users who do so probably have
never even looked for their server settings, so they'd have problems
setting it up.

I think we could provide these users a better user
experience. Currently, when trying to send the bug, if email is not set
up, Emacs presents three options: mail client, transport, and smtp. We
could add a fourth option, "send manually", where this option copies the
body of the text to the system clipboard, so the user could switch to
their browser and paste it. The command could even allow the user to
come back, press RET, then copy the subject, and a third time for the
address to send to.

It's not quite as nice as being able to directly send the email, but I
think this or something like it would be a better experience for people
who do not have their system configured to send email.

[-- Attachment #2: Type: text/html, Size: 1227 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* bug#28154: 26.0.50; suggestion to improve bug reporting interface for users who use webmail
  2017-08-20  4:45 bug#28154: 26.0.50; suggestion to improve bug reporting interface for users who use webmail Zachary Kanfer
@ 2017-08-20 14:21 ` Eli Zaretskii
  2017-08-20 19:02 ` Richard Stallman
  2017-08-21 14:20 ` Ted Zlatanov
  2 siblings, 0 replies; 8+ messages in thread
From: Eli Zaretskii @ 2017-08-20 14:21 UTC (permalink / raw)
  To: Zachary Kanfer; +Cc: 28154

> From: Zachary Kanfer <zkanfer@gmail.com>
> Date: Sun, 20 Aug 2017 00:45:40 -0400
> 
> I think we could provide these users a better user
> experience. Currently, when trying to send the bug, if email is not set
> up, Emacs presents three options: mail client, transport, and smtp. We
> could add a fourth option, "send manually", where this option copies the
> body of the text to the system clipboard, so the user could switch to
> their browser and paste it. The command could even allow the user to
> come back, press RET, then copy the subject, and a third time for the
> address to send to.

Would someone like to work on adding such a feature to emacsbug.el?





^ permalink raw reply	[flat|nested] 8+ messages in thread

* bug#28154: 26.0.50; suggestion to improve bug reporting interface for users who use webmail
  2017-08-20  4:45 bug#28154: 26.0.50; suggestion to improve bug reporting interface for users who use webmail Zachary Kanfer
  2017-08-20 14:21 ` Eli Zaretskii
@ 2017-08-20 19:02 ` Richard Stallman
  2017-08-21 14:20 ` Ted Zlatanov
  2 siblings, 0 replies; 8+ messages in thread
From: Richard Stallman @ 2017-08-20 19:02 UTC (permalink / raw)
  To: Zachary Kanfer; +Cc: 28154

[[[ To any NSA and FBI agents reading my email: please consider    ]]]
[[[ whether defending the US Constitution against all enemies,     ]]]
[[[ foreign or domestic, requires you to follow Snowden's example. ]]]

  > Currently, when trying to send the bug, if email is not set
  > up, Emacs presents three options: mail client, transport, and smtp. We
  > could add a fourth option, "send manually", where this option copies the
  > body of the text to the system clipboard, so the user could switch to
  > their browser and paste it. The command could even allow the user to
  > come back, press RET, then copy the subject, and a third time for the
  > address to send to.

I think it is good, and I see no possible loss.

-- 
Dr Richard Stallman
President, Free Software Foundation (gnu.org, fsf.org)
Internet Hall-of-Famer (internethalloffame.org)
Skype: No way! See stallman.org/skype.html.






^ permalink raw reply	[flat|nested] 8+ messages in thread

* bug#28154: 26.0.50; suggestion to improve bug reporting interface for users who use webmail
  2017-08-20  4:45 bug#28154: 26.0.50; suggestion to improve bug reporting interface for users who use webmail Zachary Kanfer
  2017-08-20 14:21 ` Eli Zaretskii
  2017-08-20 19:02 ` Richard Stallman
@ 2017-08-21 14:20 ` Ted Zlatanov
  2017-08-23  4:14   ` Zachary Kanfer
  2 siblings, 1 reply; 8+ messages in thread
From: Ted Zlatanov @ 2017-08-21 14:20 UTC (permalink / raw)
  To: Zachary Kanfer; +Cc: 28154

On Sun, 20 Aug 2017 00:45:40 -0400 Zachary Kanfer <zkanfer@gmail.com> wrote: 
ZK> I think we could provide these users a better user
ZK> experience. Currently, when trying to send the bug, if email is not set
ZK> up, Emacs presents three options: mail client, transport, and smtp. We
ZK> could add a fourth option, "send manually", where this option copies the
ZK> body of the text to the system clipboard, so the user could switch to
ZK> their browser and paste it. The command could even allow the user to
ZK> come back, press RET, then copy the subject, and a third time for the
ZK> address to send to.

mailto URLs generally support some options; a short body and subject
could be specified like this:

<a href=”mailto:emacs@gnu.org?subject=Bug%20Report&body=Hi%0Athere%20″>

Which would DTRT on many users' desktops. So maybe that would be an option?

Ted





^ permalink raw reply	[flat|nested] 8+ messages in thread

* bug#28154: 26.0.50; suggestion to improve bug reporting interface for users who use webmail
  2017-08-21 14:20 ` Ted Zlatanov
@ 2017-08-23  4:14   ` Zachary Kanfer
  2017-08-23 17:22     ` Eli Zaretskii
  2017-08-23 19:31     ` Ted Zlatanov
  0 siblings, 2 replies; 8+ messages in thread
From: Zachary Kanfer @ 2017-08-23  4:14 UTC (permalink / raw)
  To: Ted Zlatanov; +Cc: 28154

[-- Attachment #1: Type: text/plain, Size: 663 bytes --]

> Would someone like to work on adding such a feature to emacsbug.el?

I wouldn't mind coding something up for this, if we can agree on what the
flow should be.

On Mon, Aug 21, 2017 at 10:20 AM, Ted Zlatanov <tzz@lifelogs.com> wrote:

>
> mailto URLs generally support some options; a short body and subject
> could be specified like this:
>
> <a href=”mailto:emacs@gnu.org?subject=Bug%20Report&body=Hi%0Athere%20″>
>
> Which would DTRT on many users' desktops. So maybe that would be an option?
>

I'm not sure how much that functionality overlaps with the existing
behavior that's already there. It certainly wouldn't help webmail users.

[-- Attachment #2: Type: text/html, Size: 1176 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* bug#28154: 26.0.50; suggestion to improve bug reporting interface for users who use webmail
  2017-08-23  4:14   ` Zachary Kanfer
@ 2017-08-23 17:22     ` Eli Zaretskii
  2017-08-23 19:31     ` Ted Zlatanov
  1 sibling, 0 replies; 8+ messages in thread
From: Eli Zaretskii @ 2017-08-23 17:22 UTC (permalink / raw)
  To: Zachary Kanfer; +Cc: tzz, 28154

> From: Zachary Kanfer <zkanfer@gmail.com>
> Date: Wed, 23 Aug 2017 00:14:37 -0400
> Cc: 28154@debbugs.gnu.org
> 
> I wouldn't mind coding something up for this, if we can agree on what the flow should be.

Thanks.  I think what you described sounds fine.  If you have more
detailed questions, please go ahead and ask them.





^ permalink raw reply	[flat|nested] 8+ messages in thread

* bug#28154: 26.0.50; suggestion to improve bug reporting interface for users who use webmail
  2017-08-23  4:14   ` Zachary Kanfer
  2017-08-23 17:22     ` Eli Zaretskii
@ 2017-08-23 19:31     ` Ted Zlatanov
  2017-08-24  4:15       ` Zachary Kanfer
  1 sibling, 1 reply; 8+ messages in thread
From: Ted Zlatanov @ 2017-08-23 19:31 UTC (permalink / raw)
  To: Zachary Kanfer; +Cc: 28154

On Wed, 23 Aug 2017 00:14:37 -0400 Zachary Kanfer <zkanfer@gmail.com> wrote: 

>> Would someone like to work on adding such a feature to emacsbug.el?
ZK> I wouldn't mind coding something up for this, if we can agree on what the
ZK> flow should be.

There are many possible flows. Please feel free to propose and
implement; if you put your work in a branch we'll be happy to review it.

ZK> On Mon, Aug 21, 2017 at 10:20 AM, Ted Zlatanov <tzz@lifelogs.com> wrote:

>> mailto URLs generally support some options; a short body and subject
>> could be specified like this:
>> 
>> <a href=”mailto:emacs@gnu.org?subject=Bug%20Report&body=Hi%0Athere%20″>
>> 
>> Which would DTRT on many users' desktops. So maybe that would be an option?

ZK> I'm not sure how much that functionality overlaps with the existing
ZK> behavior that's already there. It certainly wouldn't help webmail users.

Maybe it will help others :)

Ted





^ permalink raw reply	[flat|nested] 8+ messages in thread

* bug#28154: 26.0.50; suggestion to improve bug reporting interface for users who use webmail
  2017-08-23 19:31     ` Ted Zlatanov
@ 2017-08-24  4:15       ` Zachary Kanfer
  0 siblings, 0 replies; 8+ messages in thread
From: Zachary Kanfer @ 2017-08-24  4:15 UTC (permalink / raw)
  To: Ted Zlatanov; +Cc: 28154

[-- Attachment #1: Type: text/plain, Size: 1360 bytes --]

Eli,

Cool. I'll code that flow up.

Ted,

I'll code up the flow above, but I'm not going to write the mailto
suggestion; I don't have email set up on a program on my machine, so I
wouldn't be able to properly test it, or even see how it differs from the
existing options.

On Wed, Aug 23, 2017 at 3:31 PM, Ted Zlatanov <tzz@lifelogs.com> wrote:

> On Wed, 23 Aug 2017 00:14:37 -0400 Zachary Kanfer <zkanfer@gmail.com>
> wrote:
>
> >> Would someone like to work on adding such a feature to emacsbug.el?
> ZK> I wouldn't mind coding something up for this, if we can agree on what
> the
> ZK> flow should be.
>
> There are many possible flows. Please feel free to propose and
> implement; if you put your work in a branch we'll be happy to review it.
>
> ZK> On Mon, Aug 21, 2017 at 10:20 AM, Ted Zlatanov <tzz@lifelogs.com>
> wrote:
>
> >> mailto URLs generally support some options; a short body and subject
> >> could be specified like this:
> >>
> >> <a href=”mailto:emacs@gnu.org?subject=Bug%20Report&body=Hi%0Athere%20″>
> >>
> >> Which would DTRT on many users' desktops. So maybe that would be an
> option?
>
> ZK> I'm not sure how much that functionality overlaps with the existing
> ZK> behavior that's already there. It certainly wouldn't help webmail
> users.
>
> Maybe it will help others :)
>
> Ted
>

[-- Attachment #2: Type: text/html, Size: 2076 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2017-08-24  4:15 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-08-20  4:45 bug#28154: 26.0.50; suggestion to improve bug reporting interface for users who use webmail Zachary Kanfer
2017-08-20 14:21 ` Eli Zaretskii
2017-08-20 19:02 ` Richard Stallman
2017-08-21 14:20 ` Ted Zlatanov
2017-08-23  4:14   ` Zachary Kanfer
2017-08-23 17:22     ` Eli Zaretskii
2017-08-23 19:31     ` Ted Zlatanov
2017-08-24  4:15       ` Zachary Kanfer

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.