| OLD | NEW |
| 1 // Copyright 2015 The LUCI Authors. All rights reserved. | 1 // Copyright 2015 The LUCI Authors. All rights reserved. |
| 2 // Use of this source code is governed under the Apache License, Version 2.0 | 2 // Use of this source code is governed under the Apache License, Version 2.0 |
| 3 // that can be found in the LICENSE file. | 3 // that can be found in the LICENSE file. |
| 4 | 4 |
| 5 package memory | 5 package memory |
| 6 | 6 |
| 7 import ( | 7 import ( |
| 8 » "github.com/luci/luci-go/common/stringset" | 8 » "github.com/luci/luci-go/common/data/stringset" |
| 9 ) | 9 ) |
| 10 | 10 |
| 11 // all of these constants were imported on Mon Dec 14 18:18:00 PST 2015 from | 11 // all of these constants were imported on Mon Dec 14 18:18:00 PST 2015 from |
| 12 // https://cloud.google.com/appengine/docs/go/mail/ | 12 // https://cloud.google.com/appengine/docs/go/mail/ |
| 13 | 13 |
| 14 var okHeaders = stringset.NewFromSlice( | 14 var okHeaders = stringset.NewFromSlice( |
| 15 "In-Reply-To", | 15 "In-Reply-To", |
| 16 "List-Id", | 16 "List-Id", |
| 17 "List-Unsubscribe", | 17 "List-Unsubscribe", |
| 18 "On-Behalf-Of", | 18 "On-Behalf-Of", |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 "tif": "image/tiff", | 150 "tif": "image/tiff", |
| 151 "tiff": "image/tiff", | 151 "tiff": "image/tiff", |
| 152 "txt": "text/plain", | 152 "txt": "text/plain", |
| 153 "vcf": "text/x-vcard", | 153 "vcf": "text/x-vcard", |
| 154 "wav": "audio/x-wav", | 154 "wav": "audio/x-wav", |
| 155 "wbmp": "image/vnd.wap.wbmp", | 155 "wbmp": "image/vnd.wap.wbmp", |
| 156 "xls": "application/vnd.ms-excel", | 156 "xls": "application/vnd.ms-excel", |
| 157 "xlsx": "application/vnd.ms-excel", | 157 "xlsx": "application/vnd.ms-excel", |
| 158 "zip": "application/zip", | 158 "zip": "application/zip", |
| 159 } | 159 } |
| OLD | NEW |