/*
 *	Copyright (C) 1984, 1985  SRI International
 *	Copyright (C) 1988, 1990  TGV, Incorporated
 */

#include "vax-mm.h"

/*
 *	Specify the USER Reply-To: field
 */
CMD_Reply_To()
{
	static struct comnd_function text = {COMND_TEXT};
	int i;
	char Local[128];

	Noise("name");
	Command_State.atom_buffer = Local;
	Command_State.atom_buffer_size = sizeof(Local);
	i = comnd_jsys(&Command_State,&text,0,0);
	Command_State.atom_buffer = 0;
	Command_State.atom_buffer_size = 0;
	if (i < 0) return(0);
	Confirm();
	strcpy(User_Reply_To_String,Local);
}

