'use strict'; module.exports = function () { let tls = this.secure || process.env.NODE_ENV === 'production' && this.get('X-Forwarded-Proto') === 'https'; let hkp = (tls ? 'hkps://' : 'hkp://') + this.host; let del = (tls ? 'https://' : 'http://') + this.host + '/api/v1/removeKey?email=user@example.com'; this.body = `
This server verifies email address as well as private key ownership by sending an encrypted verification email.
Please refer to the documentation to learn more about the api.
License AGPL v3.0
`; this.set('Content-Type', 'text/html; charset=utf-8'); };