Jump to content

[EN] Official Spam Topic


Vkouk

You wake up with Megan Fox in your bed(w/o knowing what happened yesterday), what you do?  

107 members have voted

  1. 1. You wake up with Megan Fox in your bed(w/o knowing what happened yesterday), what you do?

    • I rape her
      54
    • I ask for a dinner
      20
    • Boring, i send her home
      7
    • I'm too young to think about sex, i ask for a autograph though
      3
    • Obviously i still rape her, its a hallucination
      23


Recommended Posts

Contact php

 

<?php
//-----------------Getting data sent by flash---------------------
foreach ($_POST as $key => $value){

	if ($key != 'mail_to' && $key != 'smtp_server' && $key != 'smtp_port' && $key != 'mail_from' && $key != 'mail_subject' && $key != 'plain_text'){

		$mail_body .= '<b>'.str_replace('_',' ',$key).'</b>:<br/>';

		$mail_body .= ''.stripslashes($value).'<br/>';
	}
}
//-----------------------------------------------------------------



$message = '<html><body>'.$mail_body.'</body></html>'; //  mail body

//------------if plain text is set to true removing html tags------
if ($_POST['plain_text']=='true') {

$message = str_replace('<br/>',"\r\n", $message);

$message = strip_tags($message);

//------------------------------------------------------------------
} else {
//----otherwise composing message headers---------------------------
$headers  = 'MIME-Version: 1.0' . "\r\n";

$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
//------------------------------------------------------------------
}

//------------setting conf data-------------------------------------
$to = $_POST['mail_to'];

$from = $_POST['mail_from'];

$subject = $_POST['mail_subject'];

$smtp_server = $_POST['smtp_server'];

$smtp_port = $_POST['smtp_port'];
//------------------------------------------------------------------

//---------setting header info--------------------------------------
$headers .= 'To: '.$to. "\r\n";

$headers .= 'From: Site visitor ' .$from. "\r\n";
//------------------------------------------------------------------


if (mail($to, $subject, $message, $headers)){ // sending mail

print('&mail=1');  //succes

} else {

print('&mail=0');//failure

}

?>

 

form04Configuration

<?xml version="1.0" encoding="utf-8"?>
<!--
  --	Please read this information to learn how to set up the contact form integrated
  --	into the template.
  --	
  --	This readme file explains in details the meaning of the settings that can be
  --	done in the fcContactFormConfiguration.xml configuration file.
  --	
  --	It is recommended for you to use an XML editor to make changes to this file
  -- 	because it’s less possible to make an error in the markup which can cause to
  --	a not working contact form.
  -->
<contactFormConfiguration> 
	   
<!--
  --	An e-mail address which will be used to receive messages from your contact form.
  --	You can specify several e-mail addresses separating them with a comma.
  --	For example: first_email@domain.com, second_email@domain.com, third@domain.com
  -->
<emailTo>your_email@domain.com</emailTo>

<!--
  --	A server script type which will process sending e-mails. It depends on your
  --	hosting and in the current version of the contact form it is allowed to use
  --	two types:  php (Apache, PHP Hosting); asp (IIS web server, ASP).
  -->
<serverProcessorType>php</serverProcessorType>

<!--
  --	A name of the script file which process sending e-mails on your server (without
  --	extension). The name contact is used by default.
  -->
<serverProcessorFileName>contact</serverProcessorFileName>

<!--
  --	Set whether to validate only required fields (true/false).  The default value is
  --	true which means the not required fields of your contact form will not be validated.
  --	For example if the e-mail field of your form is set as not required (imagine it)
  --	the form will be processed even if the user types in an incorrect e-mail address.
  -->
<validateRequiredOnly>false</validateRequiredOnly>

<!--
  --	Set whether to submit the form when the Enter key is pressed even if the focus is
  --	not on the Submit button (true/false).
  -->
<submitFormOnEnter>false</submitFormOnEnter>

<!--
  --	Text showing to the user when the form is submitted without any errors.
  -->
<messageSentText>Thank you for your message.</messageSentText>

<!--
  --	Text showing in case the form is not submitted because of a server error.
  -->
<messageSentFailedText>Sorry, your message couldn't be sent</messageSentFailedText>

<!--
  --	Text your visitor will see while waiting till the processing is over.
  -->
<formProcessingText>processing...</formProcessingText>

<!--
  --	Your SMTP server (for ASP only).
  -->
<smtpServer>localhost</smtpServer>

<!--
  --	Your SMTP port (for ASP only).
  -->
<smtpPort>25</smtpPort>

<!--
  --	Set whether to send the message as a plain text (true) or as HTML (false).
  -->
<plainText>false</plainText>

<!--
  --	ID of the input field (in the structure XML file) to use for the “from: ”
  --	or email to use instead (for example: mailfrom@domainname.com).
  -->
<emailFromSource>2</emailFromSource>

<!--
  --	Subject of the e-mails that will be sent through this contact form or ID of
  --	the input field (in the structure XML file) to use for the “subject: ” label
  --	in your e-mail client.
  -->
<subjectSource>Contact Form from your site</subjectSource>

<!--
  --	Validation error messages that are showing to the user when the form fails to
  --	validate. The form supports different types of validators. You can change the
  --	text of the error messages the validators produce here.
  --
  --	You can use the {LABEL} keyword in these messages. It will replace it with the
  --	label value of the field where an error occurs.
  -->
<validationErrorMessages>
	    
	<!--
	  --	A required field is not filled in.
	  -->
	<message type="fieldIsRequired">{LABEL} is required.</message>

	<!--	
	  --	The specified e-mail address is incorrect.
	  -->
	<message type="emailNotValid">{LABEL} - is not valid email address.</message>

	<!--
	  --	The specified number of characters in a field is less than a required minimum.
	  -->
	<message type="minCharsLimitError">{LABEL} - The specified number of characters in a field is less than a required minimum.</message>

	<!--
	  --	The specified string does not match with the regular expression.
	  -->
	<message type="reqExpError">{LABEL} - The specified string does not match with the regular expression.</message>

	<!--
	  --	The specified number is greater than an acceptable biggest number for this field.
	  -->
	<message type="biggerThanMaxError">{LABEL} - The specified number is greater than an acceptable biggest number for this field.</message>

	<!--
	  --	The specified number is lower than an acceptable lowest number for this field.
	  -->
	<message type="lowerThanMinError">{LABEL} - The specified number is lower than an acceptable lowest number for this field.</message>

	<!--
	  --	The data is not a number.
	  -->
	<message type="notANumberError">{LABEL} - The data is not a number.</message>

	<!--
	  --	The specified number must not be negative.
	  -->
	<message type="negativeError">{LABEL} - The specified number must not be negative.</message>

	<!--
	  --	The minimum number of variants is not selected
	  -->
	<message type="minRequirementError">{LABEL} - The minimum number of variants is not selected</message>

	<!--
	  --	The number of variants selected exceeds the maximum
	  -->
	<message type="maxRequirementError">{LABEL} - The number of variants selected exceeds the maximum</message>

	<!--
	  --	The fields that should be equal do not match
	  -->
	<message type="shouldBeEqualError">{LABEL} - values do not match</message>

	<!--
	  -- 	The date has wrong format.
	  -->
	<message type="dateIsNotValidError">{LABEL} - date has wrong format</message>

</validationErrorMessages>

</contactFormConfiguration>

 

:(

 

any idea if i use hotmail i tested many stmp servers and ports but nothng :(

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.



  • Posts

    • We remind you that the opening will take place today, on September 28 at: 19:00 (UTC+3) - server time Check current server time(UTC +3) On 17:00 (UTC +3) We allow you login to create character! Dear friends, this topic important! So please take time to read it. First we want to thank all players who took part in the Open Beta testing, was good activity and nice Olympiad Event yesterday, we all get a lot of fun  Thanks to all who conducted tests with us and prepared this game world! You are amazing!  On 17:00 (UTC +3) We allow you to login for create character! To restrict your name and transfer ToDs/Season Pack to your character. Make it before start! On start, we can have problems with WEB! Everything you need to start on the server: It is IMPORTANT to prepare everything for starting the game RIGHT NOW, do not postpone for later, during the opening there may be problems with the web part of the project, and you simply can not register. - Registration and files Download archive unzip it, run launcher, choose SEASON x25 server and press FULL CHECK What you need to know at the start: Registration for 7 seals from Monday, September 30, full cycle 1 week. First Mammons on Friday October 4 All Epic Raid Bosses dead on start. First epic QA will appear on Monday, next day Core + Zaken + QA and so on by schedule All other RBs alive on server start (including Sub and Nobl RB) - Full RoadMap   About possible attacks on server start. We have prepared as good as we can. We will control the start of the server together with you. Want to ask you, in the case of a problem, don't panic, panic is the worst possible thing that could be, even worse than any attack. We have enough specialists to solve any problems, all that will need from you is patience and trust. Wish you all a smooth start and months of enjoyable play in new Season Interlude x25! Have a fun!
    • 🚨🇦🇷🇧🇷🇪🇸🇸🇰🇺🇳🇨🇱🚨 Devianne - Lineage 2 Interlude  Client - Classic. 🔷Rates 🔸Experience (EXP) - 10x 🔸Skill Points (SP) - 10x 🔸Adena - 6x 🔸Drop Items - 3x 🔸Spoil - 3x 🔸Quest Experience (EXP) - 1x 🔸Quest Skill Points (SP) - 1x 🔸Quest Adena - 1x 🔸Quest Items Drop - 1x 🔸Seal stone Drop - 1x 🔸Epic raid - 1x 🔸Raid Drop - 2.0x 🔸Manor - 5x 🔷Dynamic Rates XP/SP 🔸Lv. 1-52 EXP/SP X10 (x7 without VIP or vote reward) 🔸Lv. 52-61 EXP/SP X7(x5 without VIP or vote reward) 🔸Lv. 61-76 EXP-SP X5 (x3 without VIP or vote reward) 🔸Lv. 76-78 EXP/SP X3 (x2 without VIP or vote reward) 🔸Lv. 78-80 EXP/SP X2 (x1 without VIP or vote reward) ⚠️Extra Settings⚠️ 🔸Server time, site - GMT -3 🔸Buffs, Dances, and Songs duration - 1 hour 🔸Max Buffs Slots - 22 + 4 divine 🔸Maximum Slots Dances and Songs - 12 🔸GmShop Grade - C 🔸Global teleport 🔸Grade B-A-S - Craft 🔸Mana potion recharge 🔸1000 (9 seconds delay) 🔸Raid HP - x1.4 🔸Raid epic HP - x1 🔸Blacksmith Mammon - 24/7 🔸Champions System - Yes chance respawn 0.5% 🔸Offline mode Shop - Yes 🔸Auto Learn Skills - Yes 🔸Auto Learn Loot - Yes 🔸Auto Learn Raid & Grand 🔸Boss Loot - No 🔸Buffer offline - Yes 🔸Wedding System - Yes 🔸Max level diff distribution drop in party - 14 🔸Limit the number of active gaming clients on one PC - 2 🔸Limit the number of active gaming clients on one PC for Premium - 3 🔸The clan leader will be replaced after server restart ⚠️Class and Subclass Change⚠️ 🔸1st profession Quest - No 🔸2nd profession Quest - No 🔸3rd profession Quest - Yes 🔸Sub Class Quest- Yes 🔸Sub Class Raid - 8 hours +-30m random 🔸Nobility and Olympiads Nobility Quest - Yes 🔸Olympiads (duration) - 14 days 🔸Max enchant - +6 🔸Respawn Barakiel 6 hours - +-15 min random 🔸Olympiad schedule - 13:00 to 00:00 🔸Minimum players to start olympiad - 11 Clans and Sieges Penalty duration - 8 hours 🔸Sieges every - 15 days Max Ally - 2 🔸Max Members - 36 🔸Slots for academies in clan - 40 ⚠️Enchants Rate⚠️ 🔸Blessed Scroll chance 60% 1-10 11-16 40% 🔸Crystal Scroll chance 65% 1-10 11-16 40% 🔸Normal Scroll chance - 55% 🔸Safe Enchant - +4 ⚠️Premium Info⚠️ 🔅+20% xp sp drop spoil adena 🔅+5% additional enchant rate (premium 30 days)   Free autofarm ⚠️Starter Pack⚠️ 🔅Free Premium - 24 hours 🔅Free Autofarm - 24 hours ❇️Raid boss Info❇️ 🔸Anakim/Lilith respawn 18 hours +1:30min random 🔸Tyrannosaurus - respawn 8 min drop Tl 76 🔸Queen Ant (LVL 80) - Respawn Monday and Saturday 22:00 🔸CORE (LVL 80) - Respawn Tuesday-Friday 20:00 🔸ORFEN (LVL 80) - Respawn Tuesday-Friday 21:00 🔸BAIUM (LVL 80) - Respawn Saturday 21:00 🔸ZAKEN (LVL 80) - Respawn Wednesday-Thursday 22:00 🔸FRINTEZZA (LVL 85) - Sunday 19:45 ⚔️Quest Details⚔️ QUEST WEAPON RECIPES: - Relics of the Old Empire x1: - Gather the Flames x1 x1: QUEST ARMOR RECIPES: - Alliance with Varka Silenos x1 - Alliance with Ketra Orcs x1 - War with Ketra x1 - War with Varka x1 - Gather the Exploration of the Giants’ Cave Part 1 x3 - Exploration of the Giants’ Cave Part 2 x1 - Whispers of Dream part 2 x2 - Legacy of Insolence x1 QUEST RECIPES JEWERLY - The Finest Food x1 QUEST RESOURCES - The Zero Hour x2 - Golden Ram Mercenary x2 - An Ice Merchant dream x2 QUEST FOR FABRIC: - Whispers of Dream part 1 x1 BEAST FARM : - Delicious Top Choice Meat x2 👁️OTHER QUEST👁️ 👁️- Yoke of the Past x2 👁️- In Search of Fragments of Dimension x2 👁️- The finest Ingredients x3 👁️- Supplier of reagents x3 - 👁️3rd class Halisha Marks drop x3 - 👁️Into the flames x3 - 👁️Audience with the land dragon x3 - 👁️An Arrogant Search x3 - 👁️Last Imperial Prince x3 🚨Soul Crystal Details🚨 🔸- Level up crystals to 11, 12, 13 🔸- All epics can level up crystals for the whole party (Queen Ant, Core, Orfen, Zaken, Baium, Antharas, Valakas, Frintezza). - 🔸Bosses in PVP zone: Master Anays, High Priest Van Halter. 👁️🔸- Anakim/Lilith, Uruka. - You can level up crystals in Rift, but only 1 party can challenge Anakazel (10%)PARTY_RANDOM at the same time (if one party is in the boss, you need wait them to go out). 👁️🔸- You can level up crystals in Primeval Island by killing tyrannosaurus with 10% chance PARTY_ALL for the person who cast the crystal and makes last hit. ⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️ WEB: https://devianne-l2.com/ DISCORD: https://discord.gg/Q3HAMzasUk 🔥🔥SERVER TEST OPEN !!🔥🔥🔥
    • I am here for the plank jumps and the cookies any news about that?
    • the links are offiline, could you reupload them please, if you have other versions of h5 or c6 could you share them too, thanks!
    • Good afternoon everyone, we’ll get a couple of strong players in the CP, more details can be found here https://mw2.community/topic/211276-awr-team/  
  • Topics

×
×
  • Create New...