[Rt-commit] rt branch, 4.2/pseudo-from-ticket-creation, repushed
Wallace Reis
wreis at bestpractical.com
Wed Feb 4 13:21:40 EST 2015
The branch 4.2/pseudo-from-ticket-creation was deleted and repushed:
was a956efd672154dca8a7c0696b52c2ac88751c4da
now 134a478be1b63ca418380fc355923ea849812bfa
1: e82b9c0 = 1: e82b9c0 Lexically cache current user in ticket creation
2: a956efd ! 2: 134a478 Consistency on ticket creation
@@ -4,8 +4,7 @@
RT mocks a MIME object using ticket metadata during creation through web
UI which doesn't bother to include the basic email headers -- except for
- quick ticket creation form. Hence set it at the full create page for
- consistency's sakes.
+ quick ticket creation form.
Fixes: I#30602
@@ -29,6 +28,15 @@
Body => $sigless,
Type => $ARGS{'ContentType'},
Interface => RT::Interface::Web::MobileClient() ? 'Mobile' : 'Web',
+@@
+ "Message-Id" => Encode::encode( "UTF-8", RT::Interface::Email::GenMessageId ),
+ "X-RT-Interface" => $args{Interface},
+ map { $_ => Encode::encode( "UTF-8", $args{ $_} ) }
+- grep defined $args{$_}, qw(Subject From Cc)
++ grep defined $args{$_}, qw(Subject From Cc To Date)
+ );
+
+ if ( defined $args{'Body'} && length $args{'Body'} ) {
diff --git a/share/html/index.html b/share/html/index.html
--- a/share/html/index.html
More information about the rt-commit
mailing list