-
-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Display user/organization in email subject #44
Conversation
thanks @crazy-max , i acknowledge the problem 100%, but there was another problem of subjects being too long, which was mitigated by omitting org name. What I had in mind for a universal solution is to have certain repo names like Easiest implementation would be to go through all the repos in the db manually and make a list of those repos, that exist in multiple organisations, e.g., |
Hi @vfeskov, according to RFC 2822, section 2.1.1 :
So we cannot go up 78 characters for email subject but :
After observation we can therefore conclude that we can potentially arrive at a number of 355 characters today in the email subject or 455 if you merge my PR (+100 for org/user). I think we can deal with this with a ratio limitation of chars for
What do you think ? |
@crazy-max i did not mean that there was technical limitation on subject length, so far i've been sending emails with huge subjects and not getting them bounced from any mail server Problem lies in UX: since a lot of repos actually have fully contained names, e.g. what i suggest is when making a subject to use a constant array, that would contain names of those special repos with generic names, e.g., |
Oh ok, LGTM :) |
Maybe also add a bool flag in the user's options to allow to display |
We can close it now |
Orig #39