blob: c7b2b60bfb79f0934894cba20e3bc7863de4341f [file] [log] [blame]
--[[
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
]]--
-- This is source.lua - a script for displaying the source of an email
local elastic = require 'lib/elastic'
local aaa = require 'lib/aaa'
local user = require 'lib/user'
local cross = require 'lib/cross'
function handle(r)
r.content_type = "text/plain"
local get = r:parseargs()
local eid = (get.id or r.path_info):gsub("\"", ""):gsub("/", "")
local doc = elastic.get("mbox_source", eid or "hmm")
-- Try searching by mid if not found, for backward compat
if not doc or not doc.subject then
local docs = elastic.find("message-id:\"" .. r:escape(eid) .. "\"", 1, "mbox_source")
if #docs == 1 then
doc = docs[1]
end
end
if doc and doc.source then
local canAccess = false
if doc.private then
local account = user.get(r)
if account then
local lid = doc.list_raw:match("<[^.]+%.(.-)>")
for k, v in pairs(aaa.rights(r, account)) do
if v == "*" or v == lid then
canAccess = true
break
end
end
else
r:puts("You must be logged in to view this email")
return cross.OK
end
else
canAccess = true
end
if canAccess then
doc.tid = doc.request_id
r:puts(doc.source)
else
r:puts("You do not have access to view this email, sorry.")
end
else
r:puts[[No such email, sorry!]]
end
return cross.OK
end
cross.start(handle)