[vhffs-dev] Mail delivery failed: returning message to sender |
[ Thread Index |
Date Index
| More vhffs.org/vhffs-dev Archives
]
This message was created automatically by mail delivery software.
A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:
phat.momo@xxxxxxxxx
SMTP error from remote mailer after RCPT TO:<phat.momo@xxxxxxxxx>:
host gmail-smtp-in.l.google.com [66.249.93.114]:
550 5.1.1 No such user x26si1248415ugc
------ This is a copy of the message, including all the headers. ------
Return-path: <vhffs-dev@xxxxxxxxx>
Received: from localhost ([127.0.0.1] helo=tuxfamily.org)
by mx1.tuxfamily.net with esmtp (Exim 4.50)
id 1GaGbC-0005Fn-AG
for phat.momo@xxxxxxxxx; Wed, 18 Oct 2006 20:57:06 +0200
Received: from delmak.naquadah.org ([212.85.153.235]
helo=mx1.naquadah.org) by mx1.tuxfamily.net with esmtp (Exim 4.50) id
1GaGbA-0005F5-7N for vhffs-dev@xxxxxxxxx; Wed, 18 Oct 2006 20:57:04 +0200
Received: from root by mx1.naquadah.org with local (Exim 4.50) id
1GaGb5-0005Of-Sf for vhffs-dev@xxxxxxxxx; Wed, 18 Oct 2006 20:56:59 +0200
Content-Type: text/plain; charset="utf-8"
MIME-Version: 1.0
Content-Transfer-Encoding: quoted-printable
Subject: [vhffs-dev] [svn] commit: r228 - /trunk/Makefile
Date: Wed, 18 Oct 2006 18:56:59 -0000
To: vhffs-dev@xxxxxxxxx
From: vhffs-dev@xxxxxxxxx
X-Mailer: svnmailer-1.0.7
Message-Id: <E1GaGb5-0005Of-Sf@xxxxxxxxxxxxxxxx>
List-Unsubscribe: <mailto:vhffs-dev-request@xxxxxxxxx?subject=unsubscribe>
List-Subscribe: <mailto:vhffs-dev-request@xxxxxxxxx?subject=subscribe>
List-Help: <mailto:vhffs-dev-request@xxxxxxxxx?subject=help>
List-Software: Listengine 4.0, VHFFS 4.0
List-Id: vhffs-dev.vhffs.org
Reply-To: vhffs-dev@xxxxxxxxx
Author: gradator
Date: Wed Oct 18 20:56:59 2006
New Revision: 228
Log:
Makefile fixed
Modified:
trunk/Makefile
Modified: trunk/Makefile
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D
--- trunk/Makefile (original)
+++ trunk/Makefile Wed Oct 18 20:56:59 2006
@@ -40,7 +40,7 @@
/usr/bin/apt-get install $(DEBIAN_PACKAGES)
=20
test-deps:
- echo "foreach ( qw( $(PERL_MODULES) ) ){\
+ @perl -e "foreach ( qw( $(PERL_MODULES) ) ){\
\$$found =3D 0;\
\$$dep =3D \$$_;\
\$$dep =3D~ s/::/\//g;\
@@ -51,26 +51,25 @@
}\
if( \$$found =3D=3D 0 )\
{\
- print \"\n\n\tError, \$$_ perl-module is not installed\n\";\
+ print \"Error, \$$_ perl-module is not installed\n\";\
exit( 1 );\
}\
}\
- print \"\n\n\n\n\n\n\t\tGood all perl-deps are installed\n\"; exit( 0 );=
" | perl
+ print \"Good all perl-deps are installed\n\"; exit( 0 );"
=20
install-shell: build-shell add-shell
=20
link-api:
- echo " \
- if( -f \"/etc/debian_version\" ) \
- { \
- \$$link=3D\"$(DESTDIR)/usr/share/perl5/Vhffs\" ; \
- } \
- else \
- { \
- \$$link=3D\"$(DESTDIR)\".\$$INC[0] . \"/Vhffs\"; \
- } \
- unlink( \$$link ) if( -f \$$link ); \
- symlink( \"$(DESTDIR)/usr/share/vhffs/api\" , \$$link ); print \"Link API=
with \$$link\n\";"| perl
+ @perl -e " \
+ foreach \$$inc ( @INC ) { \
+ unlink ( \$$inc . \"/Vhffs\" ) if ( -l \$$inc . \"/Vhffs\" ); \
+ if ( -d \$$inc && \$$inc =3D~ /site_perl\$$/ ) { \
+ \$$link =3D \$$inc . \"/Vhffs\"; \
+ } \
+ } \
+ unlink( \$$link ) if( -f \$$link ); \
+ (symlink( \"$(DESTDIR)/usr/share/vhffs/api\" , \$$link ) && print \"=
Link API with \$$link\n\") || \
+ print \"** WARNING ** Unable to create symlink, please link /usr/share/v=
hffs/api with Vhffs in a perl include directory, please contact Vhffs team\=
";"
=09
build-shell:
install -d -m 755 $(SHELLDIR)
@@ -108,7 +107,7 @@
install -d -m 755 $(BACKENDDIR)/pgsql
install -d -m 755 $(BACKENDDIR)/tools
install -m 644 vhffs-backend/src/pgsql/*.sql $(BACKENDDIR)/pgsql/
- install -m 755 vhffs-backend/tools/vhffs-initdb $(BACKENDDIR)/tools/vhffs=
-initdb
+# install -m 755 vhffs-backend/tools/vhffs-initdb $(BACKENDDIR)/tools/vhff=
s-initdb
install -m 644 vhffs-backend/mails/* $(MAILSDIR)/
=20
install-intl: