diff --git a/CHANGELOG.md b/CHANGELOG.md index e771123d..03a3c5e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ + ## CHANGES in 0.9b: - Private lists can be hidden in the index from users without access diff --git a/README.md b/README.md index 7f40e1ce..9ea2559c 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,22 @@ + + # Pony Mail

Pony Mail is a web-based mail archive browser diff --git a/aaa_examples/README.md b/aaa_examples/README.md index 560df2c6..2b718974 100644 --- a/aaa_examples/README.md +++ b/aaa_examples/README.md @@ -1,3 +1,21 @@ + # AAA Examples This directory contains example AAA (Authentication, Authorization and Access) libraries for various use cases. diff --git a/configs/ponymail_httpd.conf b/configs/ponymail_httpd.conf index b40b74ea..c4f9ab5e 100644 --- a/configs/ponymail_httpd.conf +++ b/configs/ponymail_httpd.conf @@ -1,3 +1,17 @@ +# 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. # Uncomment this if you have't loaded mod_lua yet: #LoadModule lua_module modules/mod_lua.so diff --git a/configs/ponymail_nginx.conf b/configs/ponymail_nginx.conf index 2b2d0ef0..38ef48b6 100644 --- a/configs/ponymail_nginx.conf +++ b/configs/ponymail_nginx.conf @@ -1,3 +1,17 @@ +# 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. # First, add the following to the global config: lua_package_path '/path/to/ponymail/site/api/?.lua;;'; diff --git a/dockerfiles/debian/Dockerfile b/dockerfiles/debian/Dockerfile index a88157f5..697e6375 100644 --- a/dockerfiles/debian/Dockerfile +++ b/dockerfiles/debian/Dockerfile @@ -1,3 +1,17 @@ +# 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. ############################################################ # Dockerfile to build Pony Mail container images # Based on Debian diff --git a/dockerfiles/ponymail_httpd_docker.conf b/dockerfiles/ponymail_httpd_docker.conf index 7f9f303c..5c6c6fe0 100644 --- a/dockerfiles/ponymail_httpd_docker.conf +++ b/dockerfiles/ponymail_httpd_docker.conf @@ -1,3 +1,18 @@ +# 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. + LuaPackageCPath /usr/lib/lua/5.3/?.so LuaPackagePath /usr/share/lua/5.3/?.lua diff --git a/docs/API.md b/docs/API.md index 70461ea4..f0161c11 100644 --- a/docs/API.md +++ b/docs/API.md @@ -1,3 +1,21 @@ + # Pony Mail Archive API ### Fetching a specific email: diff --git a/docs/ARCHIVING.md b/docs/ARCHIVING.md index 75246ba9..471ec477 100644 --- a/docs/ARCHIVING.md +++ b/docs/ARCHIVING.md @@ -1,3 +1,21 @@ + # Archiving New Emails to Pony Mail # This document exists to extend the [general install guide](INSTALLING.md) provide examples on how to archive emails. diff --git a/docs/BUILDING.md b/docs/BUILDING.md index 9ea97b76..aacd49f0 100644 --- a/docs/BUILDING.md +++ b/docs/BUILDING.md @@ -1,3 +1,21 @@ + # Building Pony Mail for Production # Most of Pony Mail is ready-for-deployment files that just need to be checked out in order to work. Some areas, such as the JavaScript needs to be combined by a script, diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md index 9d25f456..d0fe349b 100644 --- a/docs/CONTRIBUTING.md +++ b/docs/CONTRIBUTING.md @@ -1,4 +1,21 @@ - + # Contributing to Pony Mail # We'd LOVE it if more people would contribute to Pony Mail! Any form of contribution is most welcome, whether it be programming, diff --git a/docs/IMPORTING.md b/docs/IMPORTING.md index 9e215f37..46a01e7a 100644 --- a/docs/IMPORTING.md +++ b/docs/IMPORTING.md @@ -1,3 +1,21 @@ + # Importing Data to Pony Mail # Pony Mail supports many ways of importing your old mail archives via the `import-mbox.py` script. For command line argument tips, run `python3 diff --git a/docs/INSTALL.centos.md b/docs/INSTALL.centos.md index 99e28821..896523ac 100644 --- a/docs/INSTALL.centos.md +++ b/docs/INSTALL.centos.md @@ -1,3 +1,21 @@ + # Installing Pony Mail on CentOS 7.1: # This installation is a bit trickier, as CentOS does not have Python 3 or any of the lua modules in its default package system. diff --git a/docs/INSTALL.debian.md b/docs/INSTALL.debian.md index 33b058d1..ce849c2c 100644 --- a/docs/INSTALL.debian.md +++ b/docs/INSTALL.debian.md @@ -1,3 +1,21 @@ + # Installing Pony Mail on Debian Jessie: # Start by installing the following Debian packages: diff --git a/docs/INSTALL.fedora.md b/docs/INSTALL.fedora.md index a94ce6f3..f64c7ace 100644 --- a/docs/INSTALL.fedora.md +++ b/docs/INSTALL.fedora.md @@ -1,3 +1,21 @@ + # Installing Pony Mail on Fedora 22: # Start by installing the following Fedora packages: diff --git a/docs/INSTALL.ubuntu.md b/docs/INSTALL.ubuntu.md index cda8aa7c..cfed91dc 100644 --- a/docs/INSTALL.ubuntu.md +++ b/docs/INSTALL.ubuntu.md @@ -1,3 +1,21 @@ + # Installing Pony Mail on Ubuntu 14.04 or 16.04: # Start by installing the following Ubuntu packages: diff --git a/docs/INSTALLING.md b/docs/INSTALLING.md index e18ab69b..64db1fbb 100644 --- a/docs/INSTALLING.md +++ b/docs/INSTALLING.md @@ -1,3 +1,21 @@ + # Installing Pony Mail #