--- attach.rb.orig	2013-11-19 16:34:45.000000000 +0900
+++ attach.rb	2013-11-19 16:35:03.000000000 +0900
@@ -112,9 +112,9 @@
     header['Content-Length'] = File.size(attach_file.untaint)
     header['Last-Modified'] = CGI.rfc1123_date(File.mtime(attach_file.untaint))
     if %r|^image/| =~ mime_type
-      header['Content-Disposition'] = %Q|inline; filename="#{file_name.to_sjis}"; modification-date="#{header['Last-Modified']}";|
+      header['Content-Disposition'] = %Q|inline; filename="#{file_name}"; modification-date="#{header['Last-Modified']}";|
     else
-      header['Content-Disposition'] = %Q|attachment; filename="#{file_name.to_sjis}"; modification-date="#{header['Last-Modified']}";|
+      header['Content-Disposition'] = %Q|attachment; filename="#{file_name}"; modification-date="#{header['Last-Modified']}";|
     end
     return ::Hiki::Response.new(File.open(attach_file.untaint, 'rb').read, 200, header)
   else
