summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/Makefile.am4
-rw-r--r--include/mailutils/Makefile.am3
-rw-r--r--include/mailutils/address.h7
-rw-r--r--include/mailutils/argcv.h7
-rw-r--r--include/mailutils/argp.h7
-rw-r--r--include/mailutils/attribute.h7
-rw-r--r--include/mailutils/auth.h7
-rw-r--r--include/mailutils/body.h7
-rw-r--r--include/mailutils/daemon.h7
-rw-r--r--include/mailutils/debug.h7
-rw-r--r--include/mailutils/envelope.h7
-rw-r--r--include/mailutils/errno.hin2
-rw-r--r--include/mailutils/error.h7
-rw-r--r--include/mailutils/filter.h7
-rw-r--r--include/mailutils/folder.h7
-rw-r--r--include/mailutils/gnu/Makefile.am4
-rw-r--r--include/mailutils/gsasl.h7
-rw-r--r--include/mailutils/guile.h7
-rw-r--r--include/mailutils/header.h7
-rw-r--r--include/mailutils/iterator.h7
-rw-r--r--include/mailutils/libsieve.h7
-rw-r--r--include/mailutils/list.h7
-rw-r--r--include/mailutils/locker.h7
-rw-r--r--include/mailutils/mailbox.h7
-rw-r--r--include/mailutils/mailcap.h7
-rw-r--r--include/mailutils/mailer.h7
-rw-r--r--include/mailutils/mailutils.h7
-rw-r--r--include/mailutils/message.h7
-rw-r--r--include/mailutils/mime.h7
-rw-r--r--include/mailutils/monitor.h7
-rw-r--r--include/mailutils/mu_auth.h7
-rw-r--r--include/mailutils/mutil.h15
-rw-r--r--include/mailutils/nls.h7
-rw-r--r--include/mailutils/nntp.h7
-rw-r--r--include/mailutils/observer.h7
-rw-r--r--include/mailutils/parse822.h7
-rw-r--r--include/mailutils/pop3.h7
-rw-r--r--include/mailutils/property.h7
-rw-r--r--include/mailutils/refcount.h7
-rw-r--r--include/mailutils/registrar.h7
-rw-r--r--include/mailutils/sql.h7
-rw-r--r--include/mailutils/stream.h7
-rw-r--r--include/mailutils/sys/Makefile.am4
-rw-r--r--include/mailutils/sys/nntp.h7
-rw-r--r--include/mailutils/sys/pop3.h7
-rw-r--r--include/mailutils/tls.h7
-rw-r--r--include/mailutils/types.h7
-rw-r--r--include/mailutils/url.h7
48 files changed, 185 insertions, 141 deletions
diff --git a/include/Makefile.am b/include/Makefile.am
index 7023cf434..b509d1d7a 100644
--- a/include/Makefile.am
+++ b/include/Makefile.am
@@ -11,10 +11,10 @@
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
## General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program; if not, write to the Free Software
-## Foundation, Inc.
-## 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+## Foundation, Inc. 51 Franklin Street, Fifth Floor, Boston, MA
+## 02110-1301 USA
SUBDIRS=mailutils
diff --git a/include/mailutils/Makefile.am b/include/mailutils/Makefile.am
index 1b05ad89e..decc78975 100644
--- a/include/mailutils/Makefile.am
+++ b/include/mailutils/Makefile.am
@@ -12,13 +12,14 @@
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
## General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with GNU Mailutils; if not, write to the Free Software
-## Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+## Foundation, Inc. 51 Franklin Street, Fifth Floor, Boston, MA
+## 02110-1301 USA
BUILT_SOURCES=errno.h
EXTRA_DIST=errno.hin
errno.h: $(top_srcdir)/mailbox/errors errno.hin
$(AWK) -f $(top_srcdir)/scripts/generr.awk $^ > $@
diff --git a/include/mailutils/address.h b/include/mailutils/address.h
index 14741a8c3..691470251 100644
--- a/include/mailutils/address.h
+++ b/include/mailutils/address.h
@@ -8,15 +8,16 @@
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
- You should have received a copy of the GNU Lesser General Public
- License along with this library; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
+ You should have received a copy of the GNU Lesser General
+ Public License along with this library; if not, write to the
+ Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ Boston, MA 02110-1301 USA */
#ifndef _MAILUTILS_ADDRESS_H
#define _MAILUTILS_ADDRESS_H
#include <mailutils/types.h>
diff --git a/include/mailutils/argcv.h b/include/mailutils/argcv.h
index 911aa45f0..621bf338a 100644
--- a/include/mailutils/argcv.h
+++ b/include/mailutils/argcv.h
@@ -8,15 +8,16 @@
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
- You should have received a copy of the GNU Lesser General Public
- License along with this library; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
+ You should have received a copy of the GNU Lesser General
+ Public License along with this library; if not, write to the
+ Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ Boston, MA 02110-1301 USA */
#ifndef _ARGCV_H
#define _ARGCV_H 1
#include <stdio.h>
#include <stdlib.h>
diff --git a/include/mailutils/argp.h b/include/mailutils/argp.h
index 3bef63eac..4be28b2b9 100644
--- a/include/mailutils/argp.h
+++ b/include/mailutils/argp.h
@@ -8,15 +8,16 @@
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
- You should have received a copy of the GNU Lesser General Public
- License along with this library; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
+ You should have received a copy of the GNU Lesser General
+ Public License along with this library; if not, write to the
+ Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ Boston, MA 02110-1301 USA */
#ifndef _MAILUTILS_ARGP_H
#define _MAILUTILS_ARGP_H
#include <mailutils/types.h>
#include <argp.h>
diff --git a/include/mailutils/attribute.h b/include/mailutils/attribute.h
index 965bf8fd4..b0280dc4f 100644
--- a/include/mailutils/attribute.h
+++ b/include/mailutils/attribute.h
@@ -8,15 +8,16 @@
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
- You should have received a copy of the GNU Lesser General Public
- License along with this library; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
+ You should have received a copy of the GNU Lesser General
+ Public License along with this library; if not, write to the
+ Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ Boston, MA 02110-1301 USA */
#ifndef _MAILUTILS_ATTRIBUTE_H
#define _MAILUTILS_ATTRIBUTE_H
#include <mailutils/types.h>
diff --git a/include/mailutils/auth.h b/include/mailutils/auth.h
index e7a9ebddc..b4332f033 100644
--- a/include/mailutils/auth.h
+++ b/include/mailutils/auth.h
@@ -8,15 +8,16 @@
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
- You should have received a copy of the GNU Lesser General Public
- License along with this library; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
+ You should have received a copy of the GNU Lesser General
+ Public License along with this library; if not, write to the
+ Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ Boston, MA 02110-1301 USA */
#ifndef _MAILUTILS_AUTH_H
#define _MAILUTILS_AUTH_H
#include <mailutils/types.h>
diff --git a/include/mailutils/body.h b/include/mailutils/body.h
index d92f00f94..fd8db9b27 100644
--- a/include/mailutils/body.h
+++ b/include/mailutils/body.h
@@ -8,15 +8,16 @@
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
- You should have received a copy of the GNU Lesser General Public
- License along with this library; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
+ You should have received a copy of the GNU Lesser General
+ Public License along with this library; if not, write to the
+ Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ Boston, MA 02110-1301 USA */
#ifndef _MAILUTILS_BODY_H
#define _MAILUTILS_BODY_H
#include <mailutils/types.h>
diff --git a/include/mailutils/daemon.h b/include/mailutils/daemon.h
index e3d3f2687..f3960ac17 100644
--- a/include/mailutils/daemon.h
+++ b/include/mailutils/daemon.h
@@ -8,15 +8,16 @@
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
- You should have received a copy of the GNU Lesser General Public
- License along with this library; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
+ You should have received a copy of the GNU Lesser General
+ Public License along with this library; if not, write to the
+ Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ Boston, MA 02110-1301 USA */
#ifndef _MAILUTILS_DAEMON_H
#define _MAILUTILS_DAEMON_H
#include <mailutils/types.h>
diff --git a/include/mailutils/debug.h b/include/mailutils/debug.h
index 66c633a91..cd4326603 100644
--- a/include/mailutils/debug.h
+++ b/include/mailutils/debug.h
@@ -8,15 +8,16 @@
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
- You should have received a copy of the GNU Lesser General Public
- License along with this library; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
+ You should have received a copy of the GNU Lesser General
+ Public License along with this library; if not, write to the
+ Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ Boston, MA 02110-1301 USA */
#ifndef _MAILUTILS_DEBUG_H
#define _MAILUTILS_DEBUG_H
#include <stdarg.h>
diff --git a/include/mailutils/envelope.h b/include/mailutils/envelope.h
index 0951f88f9..ddf8bed01 100644
--- a/include/mailutils/envelope.h
+++ b/include/mailutils/envelope.h
@@ -8,15 +8,16 @@
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
- You should have received a copy of the GNU Lesser General Public
- License along with this library; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
+ You should have received a copy of the GNU Lesser General
+ Public License along with this library; if not, write to the
+ Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ Boston, MA 02110-1301 USA */
#ifndef _MAILUTILS_ENVELOPE_H
# define _MAILUTILS_ENVELOPE_H
#include <mailutils/types.h>
diff --git a/include/mailutils/errno.hin b/include/mailutils/errno.hin
index 17fdce8d8..3b173107a 100644
--- a/include/mailutils/errno.hin
+++ b/include/mailutils/errno.hin
@@ -12,13 +12,13 @@
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */
#ifndef _MAILUTILS_ERRNO_H
#define _MAILUTILS_ERRNO_H 1
#include <mailutils/types.h>
diff --git a/include/mailutils/error.h b/include/mailutils/error.h
index 43cb8bf4b..4f45924dc 100644
--- a/include/mailutils/error.h
+++ b/include/mailutils/error.h
@@ -8,15 +8,16 @@
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
- You should have received a copy of the GNU Lesser General Public
- License along with this library; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
+ You should have received a copy of the GNU Lesser General
+ Public License along with this library; if not, write to the
+ Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ Boston, MA 02110-1301 USA */
#ifndef _MAILUTILS_ERROR_H
#define _MAILUTILS_ERROR_H
#include <stdarg.h>
diff --git a/include/mailutils/filter.h b/include/mailutils/filter.h
index e7d466e39..ba5110363 100644
--- a/include/mailutils/filter.h
+++ b/include/mailutils/filter.h
@@ -8,15 +8,16 @@
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
- You should have received a copy of the GNU Lesser General Public
- License along with this library; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
+ You should have received a copy of the GNU Lesser General
+ Public License along with this library; if not, write to the
+ Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ Boston, MA 02110-1301 USA */
#ifndef _MAILUTILS_FILTER_H
#define _MAILUTILS_FILTER_H
#include <mailutils/types.h>
diff --git a/include/mailutils/folder.h b/include/mailutils/folder.h
index 4f69485be..2fb88fe48 100644
--- a/include/mailutils/folder.h
+++ b/include/mailutils/folder.h
@@ -8,15 +8,16 @@
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
- You should have received a copy of the GNU Lesser General Public
- License along with this library; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
+ You should have received a copy of the GNU Lesser General
+ Public License along with this library; if not, write to the
+ Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ Boston, MA 02110-1301 USA */
#ifndef _MAILUTILS_FOLDER_H
# define _MAILUTILS_FOLDER_H
#include <mailutils/types.h>
diff --git a/include/mailutils/gnu/Makefile.am b/include/mailutils/gnu/Makefile.am
index 7be9fcb30..a9ab563a4 100644
--- a/include/mailutils/gnu/Makefile.am
+++ b/include/mailutils/gnu/Makefile.am
@@ -11,14 +11,14 @@
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
## General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program; if not, write to the Free Software
-## Foundation, Inc.
-## 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+## Foundation, Inc. 51 Franklin Street, Fifth Floor, Boston, MA
+## 02110-1301 USA
AUTOMAKE_OPTIONS=no-dependencies
gnudir = $(pkgincludedir)/gnu
EXTRA_HEADERS =
gnu_HEADERS = @GNU_INCLS@
diff --git a/include/mailutils/gsasl.h b/include/mailutils/gsasl.h
index 6e735dacc..d68859a54 100644
--- a/include/mailutils/gsasl.h
+++ b/include/mailutils/gsasl.h
@@ -8,15 +8,16 @@
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
- You should have received a copy of the GNU Lesser General Public
- License along with this library; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
+ You should have received a copy of the GNU Lesser General
+ Public License along with this library; if not, write to the
+ Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ Boston, MA 02110-1301 USA */
#ifndef _MAILUTILS_GSASL_H
#define _MAILUTILS_GSASL_H
#include <gsasl.h>
diff --git a/include/mailutils/guile.h b/include/mailutils/guile.h
index 9e2dbf29a..368d83865 100644
--- a/include/mailutils/guile.h
+++ b/include/mailutils/guile.h
@@ -8,15 +8,16 @@
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
- You should have received a copy of the GNU Lesser General Public
- License along with this library; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
+ You should have received a copy of the GNU Lesser General
+ Public License along with this library; if not, write to the
+ Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ Boston, MA 02110-1301 USA */
#ifndef _MU_SCM_H
#define _MU_SCM_H
#include <libguile.h>
diff --git a/include/mailutils/header.h b/include/mailutils/header.h
index 84d4d447f..561de2907 100644
--- a/include/mailutils/header.h
+++ b/include/mailutils/header.h
@@ -8,15 +8,16 @@
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
- You should have received a copy of the GNU Lesser General Public
- License along with this library; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
+ You should have received a copy of the GNU Lesser General
+ Public License along with this library; if not, write to the
+ Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ Boston, MA 02110-1301 USA */
#ifndef _MAILUTILS_HEADER_H
#define _MAILUTILS_HEADER_H
#include <mailutils/types.h>
diff --git a/include/mailutils/iterator.h b/include/mailutils/iterator.h
index eadc048fc..144a7e22d 100644
--- a/include/mailutils/iterator.h
+++ b/include/mailutils/iterator.h
@@ -8,15 +8,16 @@
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
- You should have received a copy of the GNU Lesser General Public
- License along with this library; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
+ You should have received a copy of the GNU Lesser General
+ Public License along with this library; if not, write to the
+ Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ Boston, MA 02110-1301 USA */
#ifndef _MAILUTILS_ITERATOR_H
#define _MAILUTILS_ITERATOR_H
#include <mailutils/types.h>
diff --git a/include/mailutils/libsieve.h b/include/mailutils/libsieve.h
index b3f15afb1..f6031dbf0 100644
--- a/include/mailutils/libsieve.h
+++ b/include/mailutils/libsieve.h
@@ -8,15 +8,16 @@
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
- You should have received a copy of the GNU Lesser General Public
- License along with this library; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
+ You should have received a copy of the GNU Lesser General
+ Public License along with this library; if not, write to the
+ Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ Boston, MA 02110-1301 USA */
#ifndef _MAILUTILS_LIBSIEVE_H
#define _MAILUTILS_LIBSIEVE_H
#include <sys/types.h>
#include <stdarg.h>
diff --git a/include/mailutils/list.h b/include/mailutils/list.h
index 0b1b402c9..a995169d9 100644
--- a/include/mailutils/list.h
+++ b/include/mailutils/list.h
@@ -8,15 +8,16 @@
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
- You should have received a copy of the GNU Lesser General Public
- License along with this library; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
+ You should have received a copy of the GNU Lesser General
+ Public License along with this library; if not, write to the
+ Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ Boston, MA 02110-1301 USA */
#ifndef _MAILUTILS_LIST_H
#define _MAILUTILS_LIST_H
#include <mailutils/types.h>
diff --git a/include/mailutils/locker.h b/include/mailutils/locker.h
index f74e27efb..9e7efaae7 100644
--- a/include/mailutils/locker.h
+++ b/include/mailutils/locker.h
@@ -8,15 +8,16 @@
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
- You should have received a copy of the GNU Lesser General Public
- License along with this library; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
+ You should have received a copy of the GNU Lesser General
+ Public License along with this library; if not, write to the
+ Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ Boston, MA 02110-1301 USA */
#ifndef _MAILUTILS_LOCKER_H
#define _MAILUTILS_LOCKER_H
#include <mailutils/types.h>
diff --git a/include/mailutils/mailbox.h b/include/mailutils/mailbox.h
index 015066e28..e8ef1abce 100644
--- a/include/mailutils/mailbox.h
+++ b/include/mailutils/mailbox.h
@@ -8,15 +8,16 @@
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
- You should have received a copy of the GNU Lesser General Public
- License along with this library; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
+ You should have received a copy of the GNU Lesser General
+ Public License along with this library; if not, write to the
+ Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ Boston, MA 02110-1301 USA */
#ifndef _MAILUTILS_MAILBOX_H
#define _MAILUTILS_MAILBOX_H
#include <sys/types.h>
diff --git a/include/mailutils/mailcap.h b/include/mailutils/mailcap.h
index a8717739a..9819ce7d6 100644
--- a/include/mailutils/mailcap.h
+++ b/include/mailutils/mailcap.h
@@ -8,15 +8,16 @@
This library is distributed in the hope that it will