Dear Steen,

   We have the same problem and we fixed with the following code:
public class MailServer
{

    public static void main(String[] args)
        throws Exception
    {
        String value = new String(new byte[]{'\r', '\n'});
        System.setProperty("line.separator", value);

        Main.main(args);
    }                                                                                  
                                            
} 

   After compiling of the above code I put it in phoenix.sh:
   ...
# Get the run cmd
RUN_CMD="$JAVA_HOME/bin/java $JVM_OPTS \
    $DEBUG \
    
-Djava.security.policy=jar:file:$PHOENIX_HOME/bin/phoenix-loader.jar!/META-INF/java.policy
 \
    $PHOENIX_JVM_OPTS \
    -Dphoenix.home="$PHOENIX_HOME" \
    -Djava.io.tmpdir="$PHOENIX_TMPDIR" \
    MailServer $*"
#    -jar "$PHOENIX_HOME/bin/phoenix-loader.jar" $*"   


   Best Regards,
   Miroslav Nachev



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to